{% 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/report/chart_pie_partial.html" with report_name="task_runs_by_state" %}

Task runs by app

{% include "admin/taskmonitor/report/chart_pie_partial.html" with report_name="task_runs_by_app" %}

Throughput in task executions per minute

{% include "admin/taskmonitor/report/table_partial.html" with report_name="tasks_throughput" disable_percent="yes" %}

Top {{ MAX_TOP }} tasks by runs

{% include "admin/taskmonitor/report/chart_bar_partial.html" with report_name="tasks_top_runs" %}

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

{% include "admin/taskmonitor/report/chart_bar_partial.html" with report_name="tasks_top_max_runtime" %}

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

{% include "admin/taskmonitor/report/chart_bar_partial.html" with report_name="tasks_top_avg_runtime" %}

Top {{ MAX_TOP }} tasks by failed runs

{% include "admin/taskmonitor/report/chart_bar_partial.html" with report_name="tasks_top_failed" %}

Top {{ MAX_TOP }} tasks by retried runs

{% include "admin/taskmonitor/report/chart_bar_partial.html" with report_name="tasks_top_retried" %}

Task throughput per minute by state

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

Task throughput per minute by app

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

Queue length over time

{% include "admin/taskmonitor/report/chart_throughput_partial.html" with report_name="queue_length_over_time" %}

Task runs vs. runtime (logarithmic scale)

{% include "admin/taskmonitor/report/chart_scatter_partial.html" with report_name="task_statistics" %}

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

{% endblock %}