{% extends "base.html" %} {% block title %}Dashboard · sagittarius{% endblock %} {% block content %}

Dashboard

Live since-startup figures stream in as queries are processed; the persisted window survives restarts.

Live (since startup)

{{ total }} Queries
{{ blocked }} Blocked
0.0% Blocked ratio
{{ cached }} Cached
{{ forwarded }} Forwarded
{{ blocklist_size }} Blocklist domains

Last 24 hours (persisted)

{{ window_total }} Queries
{{ window_blocked }} Blocked
{{ window_cached }} Cached
{{ window_forwarded }} Forwarded
Top domains · 24h
{% if window_top_domains.is_empty() %}

No queries in the last 24 hours.

{% else %} {% for (domain, count) in window_top_domains %} {% endfor %}
DomainQueries
{{ domain }}{{ count }}
{% endif %}
Top clients · 24h
{% if window_top_clients.is_empty() %}

No queries in the last 24 hours.

{% else %} {% for (client, count) in window_top_clients %} {% endfor %}
ClientQueries
{{ client }}{{ count }}
{% endif %}

Top talkers (since startup)

Top domains
{% if top_domains.is_empty() %}

No queries yet.

{% else %} {% for (domain, count) in top_domains %} {% endfor %}
DomainQueries
{{ domain }}{{ count }}
{% endif %}
Top clients
{% if top_clients.is_empty() %}

No queries yet.

{% else %} {% for (client, count) in top_clients %} {% endfor %}
ClientQueries
{{ client }}{{ count }}
{% endif %}
{% endblock %}