{% extends 'admin/change_list.html' %} {% load i18n humanize static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Total of {{ total_runs|intcomma }} task logs from {{ oldest_date }} to {{ youngest_date }} ({{ youngest_date|timesince:oldest_date }}) with a cumulative runtime of {{ total_runtime_date|timesince }}.

Conents

Task runs by state

{% include "admin/taskmonitor/tasklog/report_table_partial.html" with rows=task_totals_by_state %}

Task runs by app

{% include "admin/taskmonitor/tasklog/report_table_partial.html" with rows=task_runs_per_app %}

Top {{ MAX_TOP }} tasks by runs

{% include "admin/taskmonitor/tasklog/report_table_partial.html" with rows=tasks_top_runs %}

Top {{ MAX_TOP }} tasks by instance runtime in seconds

{% include "admin/taskmonitor/tasklog/report_table_partial.html" with rows=tasks_top_runtime %}

Top {{ MAX_TOP }} tasks by failed runs

{% include "admin/taskmonitor/tasklog/report_table_partial.html" with rows=tasks_top_failed %}

This data is cached. Last updated {{ last_update_at|naturaltime }}.

All data of this app is stored for a maxmimum of {{ data_max_age }} hours.

{% endblock %}