├── .github └── workflows │ ├── lint.yml │ ├── release-pr.yml │ └── release-publish.yml ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── RELEASE.md ├── charts └── cluster │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── README.md.gotmpl │ ├── grafana-dashboard.json │ ├── templates │ ├── NOTES.txt │ └── sidecar-configmap.yaml │ ├── values.schema.json │ └── values.yaml ├── images ├── backups.png ├── checkpoints.png ├── collector-stats.png ├── configuration.png ├── operational-stats.png ├── operator.png ├── overview.png ├── replication.png ├── storage-io.png └── wal.png └── provenance.gpg /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/.github/workflows/release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/release-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/.github/workflows/release-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/RELEASE.md -------------------------------------------------------------------------------- /charts/cluster/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/charts/cluster/.helmignore -------------------------------------------------------------------------------- /charts/cluster/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/charts/cluster/Chart.yaml -------------------------------------------------------------------------------- /charts/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/charts/cluster/README.md -------------------------------------------------------------------------------- /charts/cluster/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/charts/cluster/README.md.gotmpl -------------------------------------------------------------------------------- /charts/cluster/grafana-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/charts/cluster/grafana-dashboard.json -------------------------------------------------------------------------------- /charts/cluster/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/charts/cluster/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/cluster/templates/sidecar-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/charts/cluster/templates/sidecar-configmap.yaml -------------------------------------------------------------------------------- /charts/cluster/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/charts/cluster/values.schema.json -------------------------------------------------------------------------------- /charts/cluster/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/charts/cluster/values.yaml -------------------------------------------------------------------------------- /images/backups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/images/backups.png -------------------------------------------------------------------------------- /images/checkpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/images/checkpoints.png -------------------------------------------------------------------------------- /images/collector-stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/images/collector-stats.png -------------------------------------------------------------------------------- /images/configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/images/configuration.png -------------------------------------------------------------------------------- /images/operational-stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/images/operational-stats.png -------------------------------------------------------------------------------- /images/operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/images/operator.png -------------------------------------------------------------------------------- /images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/images/overview.png -------------------------------------------------------------------------------- /images/replication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/images/replication.png -------------------------------------------------------------------------------- /images/storage-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/images/storage-io.png -------------------------------------------------------------------------------- /images/wal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/images/wal.png -------------------------------------------------------------------------------- /provenance.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudnative-pg/grafana-dashboards/HEAD/provenance.gpg --------------------------------------------------------------------------------