{% extends "base.html" %} {% set active_nav = "admin" %} {% block title %}Anomalies - LSMC Atlas{% endblock %} {% block content %}

Recent Anomalies

{% if anomalies %} {% else %}

No anomaly records

{% endif %}

Selected Record

{% if anomaly %}
ID
{{ anomaly.id }}
Fingerprint
{{ anomaly.fingerprint }}
Service
{{ anomaly.service }}
Environment
{{ anomaly.environment }}
Severity
{{ anomaly.severity }}
Occurrences
{{ anomaly.occurrence_count }}
First Seen
{{ anomaly.first_seen_at }}
Last Seen
{{ anomaly.last_seen_at }}

{{ anomaly.summary }}

{{ anomaly.redacted_context | tojson(indent=2) }}
{% else %}

Select an anomaly to inspect its redacted context.

{% endif %}
{% endblock %}