{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}
| Time | Severity | Rule | Agent | Actual $ | Limit $ |
|---|---|---|---|---|---|
| {{ alert.triggered_at.strftime('%Y-%m-%d %H:%M') if alert.triggered_at else '—' }} | {{ alert.severity or '—' }} | {{ alert.rule_name or '—' }} | {{ alert.agent_id or '—' }} | {{ '%.4f' | format(alert.actual_value) if alert.actual_value is not none else '—' }} | {{ '%.4f' | format(alert.threshold) if alert.threshold is not none else '—' }} |
No recent alerts.
{% endif %}