{% extends "base.html" %} {% block title %}minitrail — trace {{ trace_id[:16] }}{% endblock %} {% block content %}
← All traces

Trace {{ trace_id[:16] }}...

{{ span_count }} spans {{ trace_duration }}
{% if cost_rows %}
Trace total {{ total_cost }}
{% for row in cost_rows %} {% endfor %}
Model Calls Input tokens Output tokens Cost
{% if row.color %} {% endif %} {{ row.model }} {{ row.calls }} {{ row.input_tokens }} {{ row.output_tokens }} {{ row.cost }}
{% endif %}
{% for row in span_rows %}
{% if row.has_children %} {% else %} {% endif %} {{ row.name }}
{{ row.duration }}
{% if row.show_tokens %} {% if row.is_aggregate %}Σ{% endif %} {{ row.tokens_label }} {{ row.cost_label }} {% endif %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}