{% extends "base.html" %} {% block title %}Traces — AI Reliability Platform{% endblock %} {% block content %} {% if traces %} {% for t in traces %} {% endfor %}
Trace IDNameStatusLatencyTokensTime
{{ t.trace_id[:8] }}... {{ t.name or "—" }} {{ t.status }} {{ "%.0f"|format(t.total_latency_ms) }}ms {{ t.total_tokens }} {{ t.created_at.strftime("%Y-%m-%d %H:%M:%S") }}
{% else %}
No traces yet. Traces are created automatically when you run evaluations.
{% endif %} {% endblock %}