Skip to content

Commit

Permalink
fix: support etcd 3.5 for grafana dashboard (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithf4 authored Aug 1, 2024
1 parent 7b29f5f commit c828ce7
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 @@ -1588,7 +1588,7 @@
"type": "prometheus",
"uid": "${ccp_datasource}"
},
"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 @@ -1599,7 +1599,7 @@
"type": "prometheus",
"uid": "${ccp_datasource}"
},
"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 services to create a robust Pos

- 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

### HAProxy

- Version 2.x for Grafana dashboard
Expand Down

0 comments on commit c828ce7

Please sign in to comment.