{% extends "admin/panels/base.html" %} {% import "admin/huey/_macros.html" as h %} {% block panel_title %}Huey{% if not enabled %} metrics off{% endif %}{% endblock %} {% block panel_content %}
{{ live.pending if live.pending is not none else '—'|safe }}
Pending
{{ live.scheduled if live.scheduled is not none else '—'|safe }}
Scheduled
{{ live.results if live.results is not none else '—'|safe }}
Results
{% if overview %}
{{ overview.inflight }}
Running
{% endif %}
{% if overview %}
{{ overview.completed }} done · {{ overview.errors }} errors / 24h
{{ h.sparkline(spark, 96, 26, '#198754') }}
{% else %}

Live queue stats only. Call enable_stats(huey, db) in your consumer for throughput, errors and per-task metrics.

{% endif %} Manage → {% endblock %}