Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: support etcd 3.5 for grafana dashboard #405

Merged
merged 3 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading