Fix Frigate detection events rate metric name in Grafana dashboard

The panel queried frigate_camera_events but the actual metric exposed
by Frigate is frigate_camera_events_total with a "camera" label
(not "camera_name").

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-02-25 16:51:57 -08:00
commit 285ad4141f
2 changed files with 3 additions and 2 deletions

View file

@ -569,8 +569,8 @@ data:
"targets": [ "targets": [
{ {
"datasource": { "type": "prometheus", "uid": "prometheus" }, "datasource": { "type": "prometheus", "uid": "prometheus" },
"expr": "rate(frigate_camera_events[5m])", "expr": "rate(frigate_camera_events_total[5m])",
"legendFormat": "{{ camera_name }} - {{ label }}", "legendFormat": "{{ camera }} - {{ label }}",
"refId": "A" "refId": "A"
} }
], ],

View file

@ -0,0 +1 @@
Fix Frigate dashboard "Detection Events Rate" panel showing no data — corrected metric name to `frigate_camera_events_total` and label to `camera`.