{# traefik/widget_access_log.html — dashboard widget: traffic origin summary #} {% if not summary %}
No access log data yet.
{% else %}
{{ summary.total | int }} total req
{{ "%.1f" | format(summary.external_pct) }}% external
{% if summary.top_ips %}
Top IPs {% if summary.ip_filter != "all" %} {{ summary.ip_filter }} {% endif %}
{% for ip in summary.top_ips %}
{{ ip.ip }} {{ ip.count }}
{% endfor %}
{% endif %} {% endif %}