Skip to content

Commit

Permalink
fix: update etcd grafana dashboard for etcd 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
keithf4 committed Nov 1, 2024
1 parent 51ddb37 commit e1d5d12
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelogs/fragments/425.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
breaking_changes:
- grafana - Update the dashboards to support Grafana 10.4 so that we're on an officially supported version of Grafana. This does potentially break backward compatibility with Grafana 9.x, so an update to Grafana 10.4 will be required with this version of pgMonitor.
bugfixes:
Expand Down
3 changes: 3 additions & 0 deletions changelogs/fragments/441.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
bugfixes:
- grafana - Fix etcd dashboard to use new metric names in etcd 3.5
4 changes: 2 additions & 2 deletions grafana/common/ETCD_Details.json
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@
"type": "prometheus",
"uid": "PDC1078F23EBDF0E5"
},
"expr": "rate(etcd_debugging_mvcc_put_total{exp_type=\"etcd\",job=~\"$job\"}[5m])",
"expr": "rate(etcd_mvcc_put_total{exp_type=\"etcd\",job=~\"$job\"}[5m])",
"format": "time_series",
"intervalFactor": 1,
"legendFormat": "{{ job }} puts/s",
Expand All @@ -1600,7 +1600,7 @@
"type": "prometheus",
"uid": "PDC1078F23EBDF0E5"
},
"expr": "rate(etcd_debugging_mvcc_delete_total{exp_type=\"etcd\",job=~\"$job\"}[5m])",
"expr": "rate(etcd_mvcc_delete_total{exp_type=\"etcd\",job=~\"$job\"}[5m])",
"format": "time_series",
"intervalFactor": 1,
"legendFormat": "{{ job }} deletes/s",
Expand Down

0 comments on commit e1d5d12

Please sign in to comment.