{% set m = metrics %}
Total calls {{ m.get("total_calls", "-") }} across visible tenant scope
Block rate {{ "%.1f"|format(m.get("block_rate_pct", 0)) }}% policy decisions
P50 engine latency {{ "%.0f"|format(m.get("p50_latency_ms", 0)) }}ms median guard evaluation
P95 engine latency {{ "%.0f"|format(m.get("p95_latency_ms", 0)) }}ms tail guard evaluation
Total cost ${{ "%.4f"|format(m.get("total_cost_usd", 0)) }} tracked provider spend
HITL holds {{ m.get("hitl_holds", m.get("pending_hitl", 0)) }} awaiting human review
{% if m.get("error") %}
API error {{ m.error }}
{% endif %}