{% extends "ui/base_ui.html" %} {% block title %}Analytics - ATP Platform{% endblock %} {% block content %}

Analytics

Platform statistics and agent performance overview.

Platform Overview

{{ total_benchmarks }}
Benchmarks
{{ total_suites }}
Suite Definitions
{{ total_runs }}
Total Runs
{{ completed_runs }}
Completed Runs
{% if avg_score is not none %}{{ "%.2f"|format(avg_score) }}{% else %}—{% endif %}
Avg Score
{{ total_agents }}
Distinct Agents

Runs by Status

{% if runs_by_status %} {% else %}

No runs yet.

{% endif %}
{% if runs_by_status %} {% for row in runs_by_status %} {% endfor %}
Status Count %
{{ row.status }} {{ row.count }} {% if total_runs > 0 %}{{ "%.0f"|format(row.count / total_runs * 100) }}%{% else %}—{% endif %}
{% endif %}

Top Agents

{% if top_agents %} {% for agent in top_agents %} {% endfor %}
Agent Avg Score Best Score Runs
{{ agent.agent_name or "unnamed" }} {% if agent.avg_score is not none %}{{ "%.2f"|format(agent.avg_score) }}{% else %}—{% endif %} {% if agent.best_score is not none %}{{ "%.2f"|format(agent.best_score) }}{% else %}—{% endif %} {{ agent.run_count }}
{% else %}

No completed runs yet.

{% endif %}

Recent Activity

{% if recent_runs %} {% for run in recent_runs %}
Run #{{ run.id }} {% if run.status == "COMPLETED" %}completed{% elif run.status == "IN_PROGRESS" %}started{% else %}{{ run.status }}{% endif %} — {{ run.agent_name or "unnamed" }} {% if run.started_at %}{{ run.started_at.strftime("%Y-%m-%d %H:%M") }}{% endif %}
{% endfor %} {% else %}

No activity yet.

{% endif %} {% endblock %}