Where is the source of the default Grafana Dashboards from? #951
-
I am wondering where the dashboards that are by default a part of the Grafana instance when you install the kube-prometheus on a cluster come from. Where do kube-prometheus find the dashboards? I see that the dashboards are compiled to this file: After reading more carefully, are the default dashboards taken from here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Partially yes. kube-prometheus uses the concept of monitoring-mixins to vendor alerts, recording rules, and dashboards coming from various places.
Recently we refactored most of the codebase so it should be clearer which dashboards we use. You can see that inclusion in https://github.com/prometheus-operator/kube-prometheus/blob/master/jsonnet/kube-prometheus/main.libsonnet#L61 |
Beta Was this translation helpful? Give feedback.
Partially yes. kube-prometheus uses the concept of monitoring-mixins to vendor alerts, recording rules, and dashboards coming from various places.
As for dashboards they are coming from following projects:
Recently we refactored most of the codebase so it should be clearer whic…