{% extends "base.html" %} {% block title %}Alert Stream - ADS-B Anomaly Detection{% endblock %} {% block content %}

Real-time Alert Stream

Live alerts are automatically appended below via WebSocket connection.
{% for alert in alerts %} {% else %} {% endfor %}
Time HEX Type Subtype Confidence Details Actions
{{ alert.time_ago }} {{ alert.hex }} {% if alert.anomaly_type == "Temporal" %} {{ alert.anomaly_type }} {% else if alert.anomaly_type == "Signal" %} {{ alert.anomaly_type }} {% else if alert.anomaly_type == "Identity" %} {{ alert.anomaly_type }} {% else if alert.anomaly_type == "Behavioral" %} {{ alert.anomaly_type }} {% else %} {{ alert.anomaly_type }} {% endif %} {{ alert.subtype }} {{ (alert.confidence * 100.0) }}% {{ alert.details_summary }} View Aircraft
No alerts yet. New alerts will appear here in real-time.
{% endblock %}