{% extends "base.html" %} {% set active_nav = "overview" %} {% block title %}Overview — Cellarbrain Explorer{% endblock %} {% block page_title %}Server Overview{% endblock %} {% block content %}
{{ overview.total }}
Total Calls
{{ overview.error_pct }}%
Error Rate
{{ overview.avg_ms or "—" }}
Avg Latency (ms)
{{ overview.sessions }}
Sessions
{% if ingest and ingest.last_poll %}
Ingest Status Details →
{% if ingest.daemon_running %}Active{% else %}Inactive{% endif %}
Daemon
{{ ingest.last_etl_batch_id or "—" }}
Last ETL
{{ ingest.failed_batches }}
Failed Batches
{% endif %}
Call Volume
Recent Errors View all →
{% if errors %} {% for e in errors %} {% endfor %}
TimeToolError
{{ e.started_at.strftime("%H:%M:%S") if e.started_at else "—" }} {{ e.name }} {{ e.error_message or "—" }}
{% else %}

No errors in this period.

{% endif %}
Top Tools View all →
{% endblock %} {% block scripts %} {% endblock %}