{% if incidents %} {% for incident in incidents %}
{{ incident.title[:40] }}{% if incident.title|length > 40 %}...{% endif %} {{ incident.severity.value }}
{% if incident.services %} {{ incident.services[0] }}{% if incident.services|length > 1 %} +{{ incident.services|length - 1 }}{% endif %} {% endif %} {% if incident.agent_confidence %} Confidence: {{ "%.0f"|format(incident.agent_confidence * 100) }}% {% endif %}
{% if incident.resolved_at %} Resolved {% else %} Open {% endif %}
{{ incident.started_at.strftime('%m/%d %H:%M') }}
{% if incident.root_cause %}
Root cause: {{ incident.root_cause[:100] }}{% if incident.root_cause|length > 100 %}...{% endif %}
{% endif %}
{% endfor %} {% else %}
📜

No analysis history

Run an analysis to see results

{% endif %}