{% extends "base.html" %} {% block content %}

System health

{% for c in checks %} {% endfor %}
CheckStatusDetail
{{ c.name }}{{ c.status.value }}{{ c.detail }}

Task status

{% for status, n in task_counts.items() %}
{{ n }}{{ status }}
{% else %}

No tasks recorded yet.

{% endfor %}

Event activity

{% for event_type, n in event_counts.items() | sort(attribute="1", reverse=True) %}
{{ n }}{{ event_type }}
{% else %}

No telemetry events recorded yet.

{% endfor %}
{% endblock %}