{% extends "web/_base.html" %} {% block title %}Task status{% endblock %} {% block content %}

Task queue

{% for worker_type, status in worker_status.items|dictsort:0 %} {% endfor %}
Type Workers Work Requests
Registered Connected Busy Idle Running Pending
{{ worker_type.name|title }} {{ status.workers.registered }} {{ status.workers.connected }} {{ status.workers.busy }} {{ status.workers.idle }} {{ status.worker_tasks.running }} {{ status.worker_tasks.pending }}
{% if arch_status %}

External tasks by architecture

{% for arch, status in arch_status.items|dictsort:0 %} {% endfor %}
Architecture Workers Work Requests
Registered Connected Busy Idle Running Pending
{% if arch == "_none_" %} Not Specified {% else %} {{ arch }} {% endif %} {{ status.external_workers_arch.registered }} {{ status.external_workers_arch.connected }} {{ status.external_workers_arch.busy }} {{ status.external_workers_arch.idle }} {{ status.worker_tasks_arch.running }} {{ status.worker_tasks_arch.pending }}
Note: Workers may be able to execute tasks for multiple architectures, so they may appear in multiple rows. e.g. 32-bit and 64-bit versions of the same architecture. Tasks without a specified architecture can execute on all external workers.
{% else %}

There are no pending work requests.

{% endif %} {% endblock %}