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

Task explorer

Task queue

Paginated and filterable list of all recorded task events.

Quick range
Showing {{ page_info.visible_start }}–{{ page_info.visible_end }} of {{ page_info.total_count }}
{% with header=sort_headers.state %} {{ header.label }} {% endwith %} {% with header=sort_headers.worker %} {{ header.label }} {% endwith %} {% with header=sort_headers.received %} {{ header.label }} {% endwith %} {% with header=sort_headers.started %} {{ header.label }} {% endwith %} {% with header=sort_headers.runtime %} {{ header.label }} {% endwith %} {% for task in tasks %} {% empty %} {% endfor %}
Task UIDChilds
{{ task.task_id }} {{ task.state }} {{ task.child_count|default:0 }} {{ task.worker }} {% if task.received %} {{ task.received|date:"M d H:i" }} {% else %} {% endif %} {% if task.started %} {{ task.started|date:"M d H:i" }} {% else %} {% endif %} {% if task.runtime is not None and task.done %} {{ task.runtime|floatformat:3 }}s {% else %} {% endif %}
No tasks matched your filters.

Runtime insights

Task stats

Compare runtimes per task name to spot hotspots and regressions.

{% with header=stats.sort_headers.name %} {{ header.label }} {% endwith %} {% with header=stats.sort_headers.count %} {{ header.label }} {% endwith %} {% with header=stats.sort_headers.failure_rate %} {{ header.label }} {% endwith %} {% with header=stats.sort_headers.retry_rate %} {{ header.label }} {% endwith %} {% with header=stats.sort_headers.avg %} {{ header.label }} {% endwith %} {% with header=stats.sort_headers.p95 %} {{ header.label }} {% endwith %} {% with header=stats.sort_headers.p99 %} {{ header.label }} {% endwith %} {% with header=stats.sort_headers.min %} {{ header.label }} {% endwith %} {% with header=stats.sort_headers.max %} {{ header.label }} {% endwith %} {% for row in stats.rows %} {% empty %} {% endfor %}
Inspect
{{ row.name }} {{ row.count }} {% if row.failure_rate is not None %}{{ row.failure_rate|floatformat:1 }}%{% else %}—{% endif %} {% if row.retry_rate is not None %}{{ row.retry_rate|floatformat:1 }}%{% else %}—{% endif %} {% if row.avg is not None %}{{ row.avg|floatformat:3 }}s{% else %}—{% endif %} {% if row.p95 is not None %}{{ row.p95|floatformat:3 }}s{% else %}—{% endif %} {% if row.p99 is not None %}{{ row.p99|floatformat:3 }}s{% else %}—{% endif %} {% if row.min is not None %}{{ row.min|floatformat:3 }}s{% else %}—{% endif %} {% if row.max is not None %}{{ row.max|floatformat:3 }}s{% else %}—{% endif %} View runs
No tasks matched your search.
{% endblock %} {% block scripts %} {% endblock %}