{% extends "modern/base.html" %} {% block title %}Operational Anomalies - BLOOM LIMS{% endblock %} {% block content %}

Recent Anomalies

{% if error_detail %}

Anomaly store unavailable: {{ error_detail }}

{% endif %} {% if anomalies %}
{% for item in anomalies %} {% endfor %}
ID Severity Category Summary Count
{{ item.id }} {{ item.severity }} {{ item.category }} {{ item.summary }} {{ item.occurrence_count }}
{% else %}

No anomalies recorded.

{% endif %}

Detail

{% if anomaly %}
ID{{ anomaly.id }}
Service{{ anomaly.service }}
Environment{{ anomaly.environment }}
Severity{{ anomaly.severity }}
Category{{ anomaly.category }}
Fingerprint{{ anomaly.fingerprint }}
First Seen{{ anomaly.first_seen_at }}
Last Seen{{ anomaly.last_seen_at }}
Count{{ anomaly.occurrence_count }}
Source View{{ anomaly.source_view_url }}

Summary

{{ anomaly.summary }}

Redacted Context

{{ anomaly.redacted_context | tojson }}
{% else %}

Select an anomaly to inspect its redacted details.

{% endif %}
{% endblock %}