{% extends "base.html" %} {% set active_nav = "ingest" %} {% block title %}Ingest — Cellarbrain Explorer{% endblock %} {% block page_title %}Ingest Daemon{% endblock %} {% block content %} {% if not has_table %}

No ingest events recorded yet. The ingest daemon has not run or observability is not configured.

{% else %} {% if overview %}
{% if overview.daemon_running %}Active{% else %}Inactive{% endif %}
Daemon Status
{{ overview.last_etl_batch_id or "—" }}
Last ETL Success
{{ overview.failed_batches }}
Failed Batches
{{ overview.last_poll.strftime("%H:%M:%S") if overview.last_poll else "—" }}
Last Activity
{% endif %}
{% include "partials/ingest_rows.html" %}
Time Type Severity Batch Details
{% if not events %}

No ingest events in this period.

{% endif %} {% endif %} {% endblock %}