{# plugins/traefik/templates/traefik/widget.html #} {% if expiring_certs %}
{% for cert in expiring_certs %}
⚠ {{ cert.cn }} {{ cert.days_remaining | int }}d
{% endfor %}
{% endif %} {% if router_data %} {% for r in router_data %}
{{ r.name }}
req/s {{ "%.2f"|format(r.latest.request_rate) }} bw {% set bps = r.latest.response_bytes_rate %} {% if bps >= 1048576 %}{{ "%.1f"|format(bps / 1048576) }}MB/s {% elif bps >= 1024 %}{{ "%.0f"|format(bps / 1024) }}KB/s {% else %}{{ "%.0f"|format(bps) }}B/s{% endif %} p95 {{ "%.0f"|format(r.latest.latency_p95_ms) }}ms {% if r.latest.error_rate_5xx_pct > 0 %} {{ "%.1f"|format(r.latest.error_rate_5xx_pct) }}% 5xx {% endif %}
{% endfor %} {% if total_routers > 5 %}
+{{ total_routers - 5 }} more — view all →
{% endif %} {% else %}

No Traefik data yet.

{% endif %}