{% extends "layouts/content_with_sidebar.html" %} {% block extrahead %} {{ block.super }} {% endblock %} {% block sidebar %}

Broker configuration

BROKER_HOST
{{ BROKER_HOST }}
BROKER_PORT
{{ BROKER_PORT }}
BROKER_USER
{{ BROKER_USER }}
BROKER_PASSWORD
Hidden
BROKER_VHOST
{{ BROKER_VHOST }}
CELERYD_CONCURRENCY
{{ CELERYD_CONCURRENCY|default_if_none:"Automatic" }}
CELERYD_PREFETCH_MULTIPLIER
{{ CELERYD_PREFETCH_MULTIPLIER }}
CELERY_RESULT_BACKEND
{{ CELERY_RESULT_BACKEND }}
CELERY_RESULT_PERSISTENT
{{ CELERY_RESULT_PERSISTENT|yesno }}
{% endblock %} {% block content %}

Workers

{% for worker_state in worker_state_list %} {% endfor %}
Hostname State
{{ worker_state.hostname }} {% if worker_state.is_alive %} Online {% else %} Offline {% endif %}

Tasks

{% for task_state in task_state_list %} {% endfor %}
State Task ID Name Timestamp Arguments Keyword arguments Retries Worker
{{ task_state.state }} {{ task_state.task_id }} {{ task_state.name }} {{ task_state.tstamp }} {{ task_state.args }} {{ task_state.kwargs }} {{ task_state.retries }} {{ task_state.worker|default_if_none:"-"}}
{% endblock %}