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:
parent
4736c7e9bd
commit
285ad4141f
2 changed files with 3 additions and 2 deletions
|
|
@ -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"
|
||||
}
|
||||
],
|
||||
|
|
|
|||
1
docs/changelog.d/fix-frigate-events-metric.bugfix.md
Normal file
1
docs/changelog.d/fix-frigate-events-metric.bugfix.md
Normal 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`.
|
||||
Loading…
Add table
Add a link
Reference in a new issue