{% extends "base.html" %} {% block content %}

Queues

Per-queue breakdown of enqueued (waiting) vs active (running) jobs.

{% if queues %}
{% for q in queues %} {% endfor %}
Queue Enqueued Active Scheduled Failed Complete
{{ q.name }} {% if q.queued > 0 %} {{ q.queued }} {% else %} 0 {% endif %} {% if q.active > 0 %} {{ q.active }} {% else %} 0 {% endif %} {% if q.scheduled > 0 %} {{ q.scheduled }} {% else %} 0 {% endif %} {% if q.failed > 0 %} {{ q.failed }} {% else %} 0 {% endif %} {% if q.complete > 0 %} {{ q.complete }} {% else %} 0 {% endif %}
Total {{ queues | sum(attribute='queued') }} {{ queues | sum(attribute='active') }} {{ queues | sum(attribute='scheduled') }} {{ queues | sum(attribute='failed') }} {{ queues | sum(attribute='complete') }}

Enqueued = waiting in queue for a free worker. Active = currently being executed by a worker.

{% else %}

No queues found.

{% endif %}
{% endblock %}