postgres_exporter/postgres_mixin
Vitaly 4fb732cf1d Fix cache hit ratio panel
This rounds to .001, otherwise cache hit axis was showing multiple points with 100% since
values were rounded at axis, but not raw values,  which changes from  0.9900001 were shown 0.9900002 on graphs, causing visual noise)

Signed-off-by: Vitaly Zhuravlev <zhuravlev.vitaly@gmail.com>
2023-04-22 16:29:13 +08:00
..
alerts postgres_mixin/alerts: fix incorrect promql aggregation 2022-04-23 08:37:16 +02:00
dashboards Fix cache hit ratio panel 2023-04-22 16:29:13 +08:00
.gitignore feat(mixin): Add grafana mixins support for postgres exporter 2021-03-02 13:18:59 +01:00
config.libsonnet postgres_mixin: allow parametrization of mixin by using _config object 2022-04-10 16:23:24 +02:00
go.mod feat(mixin): Add grafana mixins support for postgres exporter 2021-03-02 13:18:59 +01:00
Makefile feat(mixin): Add grafana mixins support for postgres exporter 2021-03-02 13:18:59 +01:00
mixin.libsonnet postgres_mixin: allow parametrization of mixin by using _config object 2022-04-10 16:23:24 +02:00
README.md feat(mixin): Add grafana mixins support for postgres exporter 2021-03-02 13:18:59 +01:00

Postgres Mixin

This is a work in progress. We aim for it to become a good role model for alerts and dashboards eventually, but it is not quite there yet.

The Postgres Mixin is a set of configurable, reusable, and extensible alerts and dashboards based on the metrics exported by the Postgres Exporter. The mixin creates recording and alerting rules for Prometheus and suitable dashboard descriptions for Grafana.

To use them, you need to have mixtool and jsonnetfmt installed. If you have a working Go development environment, it's easiest to run the following:

$ go get github.com/monitoring-mixins/mixtool/cmd/mixtool
$ go get github.com/google/go-jsonnet/cmd/jsonnetfmt

You can then build the Prometheus rules files alerts.yaml and rules.yaml and a directory dashboard_out with the JSON dashboard files for Grafana:

$ make build

For more advanced uses of mixins, see https://github.com/monitoring-mixins/docs.