{% extends "dashboard/base.html" %} {% block title %}Execution {{ detail.record.id[:8] }} — {{ dashboard_title }}{% endblock %} {% block page_heading %}Executions chevron_right #{{ detail.record.id[:8] }}{% endblock %} {% block extra_head %} {% endblock %} {% block topbar_right_actions %}
{% if current_user and current_user.is_admin %}
{% endif %}
{% endblock %} {% block content %}

Execution: {{ detail.agent_display_name }}

{% if detail.record.status == 'completed' %}
Completed Successfully
{% elif detail.record.status == 'running' %}
Running Trace
{% elif detail.record.status == 'failed' %}
Execution Failed
{% else %}
{{ detail.record.status }}
{% endif %} ID: {{ detail.record.id }} {% if detail.record.parent_execution_id or child_executions %} Workflow {% endif %}
{% if detail.record.status == 'failed' and detail.record.error %}
error

Execution Error Encountered

{{ detail.record.error }}

{% endif %}

Duration

{{ format_duration(detail.duration_ms) }}

Total Cost

{{ format_cost(detail.total_cost_usd) }}

Tokens (In / Out)

{% if detail.total_input_tokens is not none %} {{ detail.total_input_tokens }} / {{ detail.total_output_tokens or 0 }} {% else %}—{% endif %}

Models Used

{{ detail.models_used | join(', ') if detail.models_used else '—' }}

Execution Trace

{{ detail.steps | length }} Steps Captured
{% if detail.record.status == 'running' %}
{% include "dashboard/_trace_steps.html" %}
{% else %}
{% include "dashboard/_trace_steps.html" %}
{% endif %} {% if detail.record.status == 'completed' and detail.record.result_text %}
auto_awesome

Final Output

Successful Completion

{{ detail.record.result_text | safe }}
{% endif %}

Input Context

{{ detail.record.message or 'No direct input message recorded for this execution.' }}
{% if conversation %}
Session ID #{{ conversation.session_id[:8] }}
Total Turns {{ conversation.execution_count }}
Session Cost {{ format_cost(conversation.total_cost_usd) }}
{% endif %} {% if parent_execution or child_executions %}
account_tree

Delegation Workflow

{% if detail.record.delegation_depth > 0 %}
Depth {{ detail.record.delegation_depth }}
{% endif %} {% if parent_execution %} {% endif %} {% if child_executions %} {% endif %} {% if workflow_cost is not none %}
Total Workflow Cost {{ format_cost(workflow_cost) }}
{% endif %}
{% endif %}

Discovery Meta

Execution Timestamp

calendar_today

{{ format_datetime(detail.record.created_at) }}

Full Trace Pointer

{{ detail.record.id }}
{% endblock %} {% block extra_scripts %} {% endblock %}