{% extends "htmx/incidents/incident_detail.html" %} {% load incident_extras %} {% block head %} {{ block.super }} {% endblock head %} {% block main %}
| Alarm Id | {{ incident.source_incident_id }} |
|
|
|
| Description | {% if incident.metadata %} {{ incident.metadata.description }} {% else %} {{ incident.description }} {% endif %} |
|
|
|
| Status | {% if incident.open %} {{ incident.metadata.status|default:"Active"|upperfirst }} {% else %} Closed {% endif %} |
|
|
|
| Severity | {{ incident.metadata.severity }} |
|
|
|
| Timestamp | {{ incident.start_time }} |
|
|
|
| Flaps | {{ incident.metadata.endpoint_count|default:"-" }} |
| Endpoint Name | Alarm ID | Status | Init Time | Clear Time | Properties |
|---|---|---|---|---|---|
| {{ endpoint.name }} | {% for event in endpoint.events %} {% if not forloop.first %}|||||
| {{ event.properties.id }} |
|
{{ event.init_time }} | {{ event.clear_time }} | {% if not forloop.last %} |
Cannot show additional information (mismatched metadata version)
{% endif %} {% endblock incident_detail %} {% endblock main %}