{% extends "base.html" %} {% set active_nav = "latency" %} {% block title %}Latency — Cellarbrain Explorer{% endblock %} {% block page_title %}Latency Analysis{% endblock %} {% block content %}
{{ percentiles.p50 or "—" }}
P50 (ms)
{{ percentiles.p95 or "—" }}
P95 (ms)
{{ percentiles.p99 or "—" }}
P99 (ms)
{{ percentiles.max or "—" }}
Max (ms)
Latency Distribution
P50 / P95 Over Time
Slow Calls (> 2s)
{% if slow_calls %} {% for s in slow_calls %} {% endfor %}
TimeToolDuration (ms)
{{ s.started_at.strftime("%H:%M:%S") if s.started_at else "—" }} {{ s.name }} {{ s.duration_ms }}
{% else %}

No slow calls in this period.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}