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

{{ title }} {% if debug_mode %} {% endif %}


{% endblock %} {% block content %}

Task runs by state

{% include "admin/taskmonitor/tasklog/report_piechart_partial.html" with data=task_runs_by_state %}

Task runs by app

{% include "admin/taskmonitor/tasklog/report_piechart_partial.html" with data=task_runs_by_app %}

Throughput in task executions per minute

{% include "admin/taskmonitor/tasklog/report_table_partial.html" with rows=tasks_throughput disable_percent=True %}

Top {{ MAX_TOP }} tasks by runs

{% include "admin/taskmonitor/tasklog/report_barchart_partial.html" with data=tasks_top_runs %}

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

{% include "admin/taskmonitor/tasklog/report_barchart_partial.html" with data=tasks_top_runtime %}

Top {{ MAX_TOP }} tasks by failed runs

{% include "admin/taskmonitor/tasklog/report_barchart_partial.html" with data=tasks_top_failed %}

Top {{ MAX_TOP }} tasks by retried runs

{% include "admin/taskmonitor/tasklog/report_barchart_partial.html" with data=tasks_top_retried %}

Task throughput per minute by state

{% include "admin/taskmonitor/tasklog/chart_throughput_partial.html" with report_name="tasks_throughput_by_state" %}

Task throughput per minute by app

{% include "admin/taskmonitor/tasklog/chart_throughput_partial.html" with report_name="tasks_throughput_by_app" %}

Total of {% if basic_information.total_runs > 1000000 %}{{ basic_information.total_runs|intword }}{% else %}{{ basic_information.total_runs|intcomma }}{% endif %} task logs spanning {{ basic_information.youngest_date|timeuntil:basic_information.oldest_date }} with a cumulative runtime of {{ basic_information.total_runtime_date|timesince }}. This data is cached. All data of this app is stored for a maxmimum of {{ data_max_age }} hours.

{% endblock %}