{% extends "dashboard/base.html" %} {% block title %}Analytics — {{ dashboard_title }}{% endblock %} {% block page_title %}System Analytics{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{{ agent_names|length }} Agents • {{ summary.total_executions }} Executions • {{ "%.1f"|format(summary.success_rate) }}% Success
Configured Agents
smart_toyTotal Executions
terminalAvg Latency
timerTotal Cost
payments| Agent | Executions | Avg Duration | Total Cost | Success Rate |
|---|---|---|---|---|
|
smart_toy
{{ agent_names.get(row.agent_id, row.agent_id) }}
|
{{ row.execution_count }} | {% if row.avg_duration_ms %}{{ format_duration(row.avg_duration_ms) }}{% else %}—{% endif %} | {{ format_cost(row.total_cost_usd) }} | {% if row.execution_count > 0 %} {{ "%.0f"|format((row.success_count / row.execution_count) * 100) }}% {% else %} — {% endif %} |