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

Incidents

{{ open_count }} open{% if mttr %} · mean time to recovery {{ mttr }}{% endif %}

Export
{% for i in incidents %} {% endfor %} {% if not incidents %}{% endif %}
StartedIncidentMonitorStatusDurationResponse
{{ i.started_at|dt }}
{{ i.started_at|timeago }}
{{ i.title }}{% if i.cause %}
{{ i.cause[:120] }}
{% endif %}
{% if i.monitor_id and i.monitor_id in monitors %}{{ monitors[i.monitor_id].name }}{% elif i.server_id %}{{ (i.source or 'server')|replace('server:', '') }} server{% elif i.kind == 'external' %}{{ i.source or 'external' }}{% elif i.manual %}manual{% if i.status_page_id %} (status page){% endif %}{% else %}—{% endif %} {{ i.kind }}{% if not i.resolved_at %} · {{ i.status }}{% endif %} {{ fmt_duration(i.duration_seconds) }} {% if i.acknowledged_at %}ack{% elif not i.resolved_at and not i.manual %}unacknowledged{% endif %}{% if i.escalated_at %} escalated{% endif %}{% if i.postmortem %} PM{% endif %}
{% if show == 'open' %}No open incidents. Everything is up.{% else %}No incidents in this period.{% endif %}
{% endblock %}