Skip to content

Commit

Permalink
Merge branch 'development' into autovac_running
Browse files Browse the repository at this point in the history
  • Loading branch information
hunleyd authored Aug 5, 2024
2 parents 97d0f29 + c828ce7 commit fa43c91
Show file tree
Hide file tree
Showing 9 changed files with 14,563 additions and 3 deletions.
8 changes: 7 additions & 1 deletion build/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,13 @@ packages:
- { pkg_name: "pgmonitor-grafana-extras-common" }
upstream_repo: "https://github.com/CrunchyData/pgmonitor"

- pgmonitor-grafana-extras-haproxy:
files:
- { source: "grafana/haproxy/HAProxy.json", target: "/etc/grafana/crunchy_dashboards/", mode: "0640", type: "file", rpm_new: false, owner: "grafana", group: "grafana" }
pkg_dependency:
- { pkg_name: "pgmonitor-grafana-extras-common" }
upstream_repo: "https://github.com/CrunchyData/pgmonitor"

- pgmonitor-grafana-extras-pg-postgres-exporter:
files:
- { source: "grafana/postgres/postgres_exporter/PG_Overview_postgres_exporter.json", target: "/etc/grafana/crunchy_dashboards/", mode: "0640", type: "file", rpm_new: false, owner: "grafana", group: "grafana" }
Expand Down Expand Up @@ -213,7 +220,6 @@ packages:
- { pkg_name: "pgmonitor-grafana-extras-common" }
upstream_repo: "https://github.com/CrunchyData/pgmonitor"


- pg-bloat-check:
files:
- { source: "pg_bloat_check.py", target: "/usr/bin/pg_bloat_check.py", mode: "0755", type: "file", rpm_new: false, owner: "root", group: "root" }
Expand Down
4 changes: 4 additions & 0 deletions changelogs/fragments/207.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
minor_changes:
- grafana - add a dashboard for HAProxy


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


2 changes: 2 additions & 0 deletions changelogs/fragments/408.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
trivial:
- docs - Add section for suggested additional metrics
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
Loading

0 comments on commit fa43c91

Please sign in to comment.