{% macro status_badge(status) %} {% if status == 'completed' %} Success {% elif status == 'running' %} Running {% elif status == 'failed' %} Failed {% elif status == 'queued' %} Queued {% elif status == 'timeout' %} Timeout {% else %} {{ status|upper }} {% endif %} {% endmacro %} {% if rows %}
| ID | Agent | Status | Message / Task | Session | Duration | Cost |
|---|---|---|---|---|---|---|
| #{{ row.id_short }} |
smart_toy
{{ agent_names.get(row.agent_id, row.agent_id) }}
|
{{ status_badge(row.status) }} |
{{ row.message_preview or 'No message available' }} |
{% if row.session_id %} {{ row.session_id[:8] }} {% else %} — {% endif %} | {{ format_duration(row.duration_ms) }} | {{ format_cost(row.cost_usd) }} |
Showing {{ rows|length }} of {{ total }} results
Try adjusting your filters or check if agents are correctly configured to run.