ceph/monitoring/ceph-mixin
Aswin Toni 2e0e684fc2 ceph-mixin: Remove jsonnet building
Signed-off-by: Aswin Toni <aswin.toni@cern.ch>
2022-08-17 12:08:56 +02:00
..
dashboards monitoring/ceph-mixin: OSD overview typo fix 2022-07-28 15:15:32 +02:00
dashboards_out monitoring/ceph-mixin: OSD overview typo fix 2022-07-28 15:15:32 +02:00
tests_alerts prometheus: add multicluster support to alerts 2022-08-17 12:08:56 +02:00
tests_dashboards ceph-mixin: fix test with rate and label changes 2022-05-17 09:42:29 +02:00
.gitignore
.pylintrc
CMakeLists.txt ceph-mixin: Remove jsonnet building 2022-08-17 12:08:56 +02:00
Makefile ceph-mixin: fix makefile dashboards dependency 2022-05-16 15:26:55 +02:00
README.md prometheus: add multicluster support to alerts 2022-08-17 12:08:56 +02:00
alerts.jsonnet prometheus: add multicluster support to alerts 2022-08-17 12:08:56 +02:00
alerts.libsonnet prometheus: add multicluster support to alerts 2022-08-17 12:08:56 +02:00
config.libsonnet ceph-mixin: fix linting issue and add cluster template support 2022-05-16 15:26:53 +02:00
dashboards.jsonnet
dashboards.libsonnet ceph-mixin: refactor the structure of _config and utils 2022-05-16 15:26:56 +02:00
jsonnet-bundler-build.sh
jsonnetfile.json
jsonnetfile.lock.json
lint-jsonnet.sh
mixin.libsonnet ceph-mixin: refactor the structure of _config and utils 2022-05-16 15:26:56 +02:00
prometheus_alerts.libsonnet prometheus: add multicluster support to alerts 2022-08-17 12:08:56 +02:00
prometheus_alerts.yml prometheus: add multicluster support to alerts 2022-08-17 12:08:56 +02:00
requirements-alerts.txt
requirements-grafonnet.txt
requirements-lint.txt
test-jsonnet.sh prometheus: add multicluster support to alerts 2022-08-17 12:08:56 +02:00
tox.ini prometheus: add multicluster support to alerts 2022-08-17 12:08:56 +02:00

README.md

Prometheus Monitoring Mixin for Ceph

A set of Grafana dashboards and Prometheus alerts for Ceph.

All the Grafana dashboards are already generated in the dashboards_out directory and alerts in the prometheus_alerts.yml file.

You can use the Grafana dashboards and alerts with Jsonnet like any other prometheus mixin. You can find more resources about mixins in general on monitoring.mixins.dev.

Grafana dashboards for Ceph

In dashboards_out you can find a collection of Grafana dashboards for Ceph Monitoring.

These dashboards are based on metrics collected from prometheus scraping the prometheus mgr plugin and the node_exporter.

Requirements

Prometheus alerts

In prometheus_alerts.libsonnet you'll find a set of Prometheus alert rules that should provide a decent set of default alerts for a Ceph cluster. After building them with jsonnet put this file in place according to your Prometheus configuration (wherever the rules configuration stanza points).

Multi-cluster support

Ceph-mixin supports dashboards and alerts across multiple clusters. To enable this feature you need to configure the following in config.libsonnnet:

showMultiCluster: true,
clusterLabel: '<your cluster label>',

SNMP

Ceph provides a MIB (CEPH-PROMETHEUS-ALERT-MIB.txt) to support sending Prometheus alerts through to an SNMP management platform. The translation from Prometheus alert to SNMP trap requires the Prometheus alert to contain an OID that maps to a definition within the MIB. When making changes to the Prometheus alert rules file, developers should include any necessary changes to the MIB.

Building from Jsonnet

  • Install jsonnet (at least v0.18.0)
    • By installing the package jsonnet in most of the distro and golang-github-google-jsonnet in fedora
  • Install jsonnet-bundler

To rebuild all the generated files, you can run tox -egrafonnet-fix.

The jsonnet code located in this directory depends on some Jsonnet third party libraries. To update those libraries you can run jb update and then update the generated files using tox -egrafonnet-fix.