Skip to content

Commit

Permalink
fix: support etcd 3.5 for grafana dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
keithf4 committed May 10, 2024
1 parent 0a3a766 commit 635bc1d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelogs/fragments/404.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
bugfixes:
- grafana - Fix etcd dashboard to use new metric names in etcd 3.5


4 changes: 2 additions & 2 deletions grafana/etcd/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
4 changes: 4 additions & 0 deletions hugo/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ pgMonitor combines multiple open-source software packages and necessary configur

- pgMonitor plans to support all PostgreSQL versions that are actively supported by the PostgreSQL community. Once a major version of PostgreSQL reaches its end-of-life (EOL), pgMonitor will cease supporting that major version soon after. Please see the official PostgreSQL website for [community supported releases](https://www.postgresql.org/support/versioning/).

### etcd

- Version 3.5 and greater is supported for the Grafana dashboard

#### Known issues

- PostgreSQL 10+ SCRAM-SHA-256 encrypted passwords are supported on the Linux version of pgMonitor 4.0 or later only.
Expand Down

0 comments on commit 635bc1d

Please sign in to comment.