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

Trace Browser

{% if traces %}
{% for t in traces %} {% endfor %}
Trace IDTenantSessionInput VerdictBlock ReasonEngine Latency
{{ t.get('this_hash','')[:12] }}... {{ t.get("tenant_id","") }} {{ t.get("session_id","") }} {{ t.get("input_text","")[:80] }} {% if t.get("blocked") %}BLOCKED {% elif t.get("hitl_status") == "idle" %}HELD {% elif t.get("hitl_status") == "denied" %}DENIED {% elif t.get("hitl_status") == "approved" %}APPROVED {% else %}OK{% endif %} {{ t.get("block_reason","") }} {{ "%.0f"|format(t.get("engine_latency_ms", t.get("total_latency_ms",0))) }}ms
{% else %}
No traces match your filter.
{% endif %}
{% endblock %}