{% extends "base.html" %} {% block title %}Reports{% endblock %} {% block content %}

Uptime report

{{ rep.since|dt }} → {{ rep.until|dt }}

Export centre {% if user.can_edit %}
{% endif %}
Overall uptime
{{ rep.overall if rep.overall is not none else '—' }}{% if rep.overall is not none %}%{% endif %}
Incidents
{{ rep.incidents }}
Total downtime
{{ fmt_duration(rep.downtime_s) }}
Alerts sent
{{ rep.alerts }}
{% for r in rep.rows %}{% endfor %} {% if not rep.rows %}{% endif %}
MonitorUptimeChecksAvg responseIncidentsDowntimeChanges
{{ r.monitor.name }} {{ r.monitor.mode }} {% if r.uptime is none %}{% else %}{{ r.uptime }}%{% endif %} {{ r.checks }}{{ r.avg_ms ~ ' ms' if r.avg_ms else '—' }}{{ r.incidents }}{{ fmt_duration(r.downtime_s) }}{{ r.changes }}
No monitors yet.
Weekly summary
Every Monday at 08:00 UTC we post this summary to all your alert channels.
{% if user.can_edit %}
{% else %}{{ 'on' if ws.weekly_report else 'off' }}{% endif %}
{% endblock %}