{% extends "dashboard/base.html" %} {% block title %}Executions — {{ dashboard_title }}{% endblock %} {% block page_title %}Executions{% endblock %} {% block content %}

Execution History

Monitor all agent invocations, performance, and costs.

Total Executions
{{ exec_stats.total_executions if exec_stats else total }}
Success Rate
{% if exec_stats and exec_stats.total_executions > 0 %} {{ "%.0f"|format((exec_stats.success_count / exec_stats.total_executions) * 100) }}% {% else %}—{% endif %}
Avg Duration
{% if exec_stats and exec_stats.avg_duration_ms %} {{ format_duration(exec_stats.avg_duration_ms) }} {% else %}—{% endif %}
Total Cost
{% if exec_stats %} {{ format_cost(exec_stats.total_cost_usd) }} {% else %}—{% endif %}
search
{% set statuses = [('', 'All'), ('running', 'Running'), ('completed', 'Completed'), ('failed', 'Failed')] %} {% for s_val, s_label in statuses %} {% endfor %}
{% if agent_names %} {% endif %}
{% include "dashboard/_exec_rows.html" %}
{% endblock %}