Task explorer
Paginated and filterable list of all recorded task events.
| Task | UID | {% with header=sort_headers.state %}{{ header.label }} | {% endwith %}Childs | {% 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 %}
|---|---|---|---|---|---|---|---|
| {{ 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
Compare runtimes per task name to spot hotspots and regressions.
| {{ 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 %}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. | |||||||||