{% extends "base.html" %} {% block title %}Anomalies — Cellarbrain{% endblock %} {% block page_title %}Anomaly Detection{% endblock %} {% block content %} {% if not anomalies %}

No anomalies detected. All systems operating normally.

{% else %}

{{ anomalies|length }} anomal{{ "y" if anomalies|length == 1 else "ies" }} detected.

{% for a in anomalies %} {% endfor %}
Severity Kind Subject Message Observed Baseline
{% if a.severity == "critical" %}CRITICAL {% elif a.severity == "warn" %}WARN {% else %}INFO {% endif %} {{ a.kind }} {{ a.subject }} {{ a.message }} {{ "%.1f"|format(a.observed) }} {{ "%.1f"|format(a.baseline) }}
{% endif %} {% endblock %}