{% extends "base.html" %}
{% set active_page = "" %}
{% block title %}HAProxy • Statistics{% endblock %}
{% block head %}
{% endblock %}
{% block breadcrumb %}{% endblock %}
{% block content %}
Haproxy Configurator
Home
Add Frontend&Backend
Edit HAProxy Config
Security Events
Statistics
HAProxy Stats
| Frontend Name | Server Name | 4xx Errors | 5xx Errors | Bytes In (MB) | Bytes Out (MB) | Total Connections |
|---|---|---|---|---|---|---|
| {{ stat.frontend_name }} | {{ stat.server_name }} | {% if stat['4xx_errors'] > 0 %} {{ stat['4xx_errors'] }} {% else %} {{ stat['4xx_errors'] }} {% endif %} | {% if stat['5xx_errors'] > 0 %} {{ stat['5xx_errors'] }} {% else %} {{ stat['5xx_errors'] }} {% endif %} | {{ "%.2f"|format(stat.bytes_in_mb) }} | {{ "%.2f"|format(stat.bytes_out_mb) }} | {{ stat.conn_tot }} |