{% 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" %}

Completed tasks 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 }} apps by total task runs

{% include "admin/taskmonitor/report/chart_bar_partial.html" with report_name="apps_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 total runtime in seconds

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

Top {{ MAX_TOP }} apps by total task runtime in seconds

{% include "admin/taskmonitor/report/chart_bar_partial.html" with report_name="apps_top_cum_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" %}

Executed tasks per minute by state

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

Completed tasks per minute by app

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

Exceptions per minute

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

App failures per minute

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

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 and was last updated {{ last_update_at|naturaltime|default:"?"}}. All data of this app is stored for a maxmimum of {{ data_max_age }} hours.

{% endblock %}