From 285ad4141ff67f141c2a8c622459fa3c72105daa Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Wed, 25 Feb 2026 16:51:57 -0800 Subject: [PATCH] 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 --- .../grafana-config/dashboards/configmap-frigate.yaml | 4 ++-- docs/changelog.d/fix-frigate-events-metric.bugfix.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 docs/changelog.d/fix-frigate-events-metric.bugfix.md diff --git a/argocd/manifests/grafana-config/dashboards/configmap-frigate.yaml b/argocd/manifests/grafana-config/dashboards/configmap-frigate.yaml index 5c80cc7..7731c18 100644 --- a/argocd/manifests/grafana-config/dashboards/configmap-frigate.yaml +++ b/argocd/manifests/grafana-config/dashboards/configmap-frigate.yaml @@ -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" } ], diff --git a/docs/changelog.d/fix-frigate-events-metric.bugfix.md b/docs/changelog.d/fix-frigate-events-metric.bugfix.md new file mode 100644 index 0000000..3702406 --- /dev/null +++ b/docs/changelog.d/fix-frigate-events-metric.bugfix.md @@ -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`.