{% extends "base.html" %} {% block title %}Alarms · Solisdash{% endblock %} {% block content %}

Alarms

Faults and warnings the poller has seen. Reads from MongoDB only.

{% if not alarms.rows %}

No alarms match these filters.

{% else %}
{% for a in alarms.rows %} {% endfor %}
When Station Device SN Code Level State Message
{% if a.alarm_begin_time %} {{ (a.alarm_begin_time // 1000)|int }} {% else %}—{% endif %} {{ a.station_id }} {{ a.alarm_device_sn }} {{ a.alarm_code }} {{ a.alarm_level }} {{ state_labels.get(a.state, a.state) }} {{ a.alarm_msg or a.advice }}
{% endif %} {% endblock %}