{% extends "base.html" %} {% block title %}Traces — LongTracer Dashboard{% endblock %} {% set page = "traces" %} {% block content %}
| Trace ID | Project | Verdict | Trust Score | Duration | Created |
|---|---|---|---|---|---|
| {{ t.trace_id[:12] }}… | {{ t.project_name or '—' }} | {% if t.trust_score is not none %} {% if t.trust_score >= 0.5 %} PASS {% else %} FAIL {% endif %} {% else %} N/A {% endif %} | {% if t.trust_score is not none %} {{ "%.2f"|format(t.trust_score) }} {% else %}—{% endif %} | {{ t.duration_fmt }} | {{ t.created_fmt }} |
Run a verification through the API to see traces here.
curl -X POST http://localhost:8100/api/v1/verify \
-H "x-api-key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"response": "...", "sources": ["..."]}'