diff --git a/changelogs/fragments/404.yml b/changelogs/fragments/404.yml new file mode 100644 index 0000000..ff74908 --- /dev/null +++ b/changelogs/fragments/404.yml @@ -0,0 +1,4 @@ +bugfixes: + - grafana - Fix etcd dashboard to use new metric names in etcd 3.5 + + diff --git a/grafana/etcd/ETCD_Details.json b/grafana/etcd/ETCD_Details.json index 5bec8f6..7f990e6 100644 --- a/grafana/etcd/ETCD_Details.json +++ b/grafana/etcd/ETCD_Details.json @@ -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", @@ -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", diff --git a/hugo/content/_index.md b/hugo/content/_index.md index 3c14c31..8e2b9d1 100644 --- a/hugo/content/_index.md +++ b/hugo/content/_index.md @@ -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.