{% extends "base.html" %} {% from "macros.html" import cost, pct %} {% block title %}Dashboard · LLM Admin{% endblock %} {% block content %}

Dashboard

Window: {{ since }} → {{ until }}

Last 24h

Runs
{{ kpis_24h.total_runs }}
Cost
{{ cost(kpis_24h.total_cost) }}
Error rate
{{ pct(kpis_24h.error_rate) }}
Cache hit rate
{{ pct(kpis_24h.cache_hit_rate) }}
Budget-blocked
{{ blocked_24h }}

Last 7d

Runs
{{ kpis_7d.total_runs }}
Cost
{{ cost(kpis_7d.total_cost) }}
Error rate
{{ pct(kpis_7d.error_rate) }}
Cache hit rate
{{ pct(kpis_7d.cache_hit_rate) }}

Top agents by cost (7d)

{% if top_agents %} {% for a in top_agents %} {% endfor %}
AgentRunsTotalAvg/run
{{ a.agent_type }} {{ a.runs }} {{ cost(a.total_cost) }} {{ cost(a.avg_cost) }}
{% else %}

No runs in the window.

{% endif %} {% endblock %}