{# plugins/traefik/templates/traefik/index.html #} {% extends "base.html" %} {% block title %}Traefik — FabledNetMon{% endblock %} {% block content %}

Traefik Routers

{% if not router_data %}

No Traefik metrics yet. Configure metrics_url in config.yaml under plugins.traefik.

{% else %}
{% for r in router_data %}

{{ r.name }}

Req/s {{ "%.2f"|format(r.latest.request_rate) }} {{ r.sparkline_req | safe }}
p95 ms {{ "%.1f"|format(r.latest.latency_p95_ms) }} {{ r.sparkline_p95 | safe }}
p99 ms {{ "%.1f"|format(r.latest.latency_p99_ms) }}
4xx % {{ "%.1f"|format(r.latest.error_rate_4xx_pct) }}%
5xx % {{ "%.1f"|format(r.latest.error_rate_5xx_pct) }}% {{ r.sparkline_5xx | safe }}
Last scraped {{ r.latest.scraped_at.strftime("%H:%M:%S") }} UTC
{% endfor %}
{% endif %} {% endblock %}