{% extends "base.html" %} {% block title %}HAProxy Statistics{% endblock %} {% block nav_stats %} active{% endblock %} {% block extra_css %} .dark-mode .table { color: white; } .dark-mode .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(255, 255, 255, 0.05); } .dark-mode .table-bordered { border-color: #2bb9c7; } .dark-mode .table-bordered th, .dark-mode .table-bordered td { border-color: rgba(43, 185, 199, 0.3); } .dark-mode h1 { color: #2bb9c7; } {% endblock %} {% block content %}

HAProxy Statistics

{% if error_message %} {% endif %}
{% for stat in stats %} {% endfor %}
Frontend Name Server Name 4xx Errors 5xx Errors Bytes In (MB) Bytes Out (MB) Total Connections
{{ stat.frontend_name }} {{ stat.server_name }} {{ stat['4xx_errors'] }} {{ stat['5xx_errors'] }} {{ stat.bytes_in_mb }} {{ stat.bytes_out_mb }} {{ stat.conn_tot }}
{% endblock %}