{% extends "base.html" %} {% block content %}

Traces ({{ total }} total)

{% for t in traces %} {% endfor %}
Trace ID Input Status Spans Input Tokens Output Tokens Total Tokens Cost Duration Created
{{ t.trace_id[:8] }}... {{ (t.entry_input or '')[:80] }}{% if (t.entry_input or '') | length > 80 %}...{% endif %} {{ t.status }} {{ t.span_count | default(0) }} {{ "{:,}".format(t.total_input_tokens | default(0) | int) }} {{ "{:,}".format(t.total_output_tokens | default(0) | int) }} {{ "{:,}".format(t.total_tokens | default(0) | int) }} ${{ "%.4f" | format(t.total_cost | default(0) | float) }} {{ t.total_duration_ms | default('-') }}ms {{ t.created_at }}
{% if pages > 1 %} {% endif %}
{% endblock %}