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": [
{
"datasource": { "type": "prometheus", "uid": "prometheus" },
"expr": "rate(frigate_camera_events[5m])",
"legendFormat": "{{ camera_name }} - {{ label }}",
"expr": "rate(frigate_camera_events_total[5m])",
"legendFormat": "{{ camera }} - {{ label }}",
"refId": "A"
}
],