{% extends "base.html" %} {% block content %}
{% if summary[2] %}Kritische Ereignisse{% elif summary[1] %}Hinweise vorhanden{% else %}Keine kritischen Auffaelligkeiten{% endif %}
{% if summary[2] %}KRITISCH{% elif summary[1] %}PRUEFEN{% else %}STABIL{% endif %}
Geraete{{ summary[0] }}
Warnungen{{ summary[1] }}
Kritisch{{ summary[2] }}
Ereignisse{{ summary[3] }}
Letzte Meldung{{ summary[7] or '-' }}

Geraeteabdeckung

Bekannt{{ coverage[0] }}
Meldend < 36 Std.{{ coverage[1] }}
Stumm > 36 Std.{{ coverage[2] }}
{% if alerts %}

Auffaellige Geraete {{ current_alert_count }} aktuell, {{ alerts|length - current_alert_count }} historisch

{% for alert in alerts %} {{ alert.alert_state }} | {{ 'aktuell' if alert.event.is_current else 'historisch' }}{{ alert.machine_name }}{{ alert.total_events }} Ereignisse | {{ alert.unique_ip_count }} Quell-IPs | letztes Ereignis {{ alert.event.label }} {% endfor %}
{% endif %}

Geraetestatus

{% for row in reports %}{% else %}{% endfor %}
GeraetOrganisationStatusEreignisseQuell-IPsEmpfangen
{{ row.machine_name }}{{ row.organization_name or '-' }}{{ row.alert_state }}{% if row.total_events %}{{ 'aktuell' if row.event.is_current else 'historisch' }}{% endif %}{{ row.total_events }}{{ row.unique_ip_count }}{{ row.received_at or '-' }}
Keine Geraeteberichte.
{% endblock %}