assets: modify and add grafana dashboards

This commit is contained in:
Frederic Branczyk
2017-09-07 13:44:12 +02:00
parent bbfabfaf4d
commit dfd2ee2847
15 changed files with 11841 additions and 6665 deletions

View File

@@ -8,8 +8,9 @@ ALERT NodeExporterDown
summary = "node-exporter cannot be scraped",
description = "Prometheus could not scrape a node-exporter for more than 10m, or node-exporters have disappeared from discovery.",
}
ALERT K8SNodeOutOfDisk
IF kube_node_status_condition{condition"OutOfDisk", status="true"} == 1
IF kube_node_status_condition{condition="OutOfDisk", status="true"} == 1
LABELS {
service = "k8s",
severity = "critical"
@@ -18,7 +19,7 @@ ALERT K8SNodeOutOfDisk
summary = "Node ran out of disk space.",
description = "{{ $labels.node }} has run out of disk space.",
}
ALERT K8SNodeMemoryPressure
IF kube_node_status_condition{condition="MemoryPressure", status="true"} == 1
LABELS {
@@ -29,7 +30,7 @@ ALERT K8SNodeMemoryPressure
summary = "Node is under memory pressure.",
description = "{{ $labels.node }} is under memory pressure.",
}
ALERT K8SNodeDiskPressure
IF kube_node_status_condition{condition="DiskPressure", status="true"} == 1
LABELS {