{% extends "layouts/base.html" %} {% load static %} {% block title %}System Metrics - Stream Processor{% endblock %} {# Put Chart.js in the head #} {% block extra_head %} {% endblock %} {% block content %}

System Metrics

Performance analytics and system monitoring

Back to Dashboard
Detection Accuracy
{{ performance_data.detection_accuracy|floatformat:1 }}%
Stream Uptime
{{ performance_data.stream_uptime|floatformat:1 }}%
Notification Rate
{{ performance_data.notification_delivery_rate|floatformat:1 }}%
Detection Activity (24h)
Hourly jingle detection counts
Channel Performance
Sessions vs detections by channel
Channel Statistics
Detailed performance metrics by channel (last 7 days)
{% for channel in channel_stats %} {% empty %} {% endfor %}
Channel Sessions Detections Avg Confidence Detection Rate
{{ channel.name }}
{{ channel.sessions }} {{ channel.detections }} {{ channel.avg_confidence|floatformat:2 }}% {% if channel.sessions > 0 %} {% widthratio channel.detections channel.sessions 100 as detection_rate %} {{ detection_rate|floatformat:1 }} per session {% else %} N/A {% endif %}
No channel data available
Database
Healthy
Redis Cache
Connected
Celery Workers
Active
System Load
Normal
{# Charts #} {% endblock %}