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

Trace Browser

{% if traces %}
{% for t in traces %} {% endfor %}
Trace IDTenantSessionInput VerdictBlock ReasonLatency
{{ t.get('this_hash','')[:12] }}... {{ t.get("tenant_id","") }} {{ t.get("session_id","") }} {{ t.get("input_text","")[:80] }} {% if t.get("blocked") %}BLOCKED {% else %}OK{% endif %} {{ t.get("block_reason","") }} {{ "%.0f"|format(t.get("total_latency_ms",0)) }}ms
{% else %}
No traces match your filter.
{% endif %}
{% endblock %}