-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(k8s/amour): organise vm rules with apps
- Loading branch information
Showing
7 changed files
with
468 additions
and
434 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
package kube_state_metrics | ||
|
||
import victoriametricsv1beta1 "github.com/VictoriaMetrics/operator/api/victoriametrics/v1beta1" | ||
|
||
#VMRuleList: victoriametricsv1beta1.#VMRuleList & { | ||
apiVersion: "operator.victoriametrics.com/v1beta1" | ||
kind: "VMRuleList" | ||
items: [...{ | ||
apiVersion: "operator.victoriametrics.com/v1beta1" | ||
kind: "VMRule" | ||
}] | ||
} | ||
|
||
#VMRuleList: items: [{ | ||
metadata: name: "kube-state-metrics" | ||
spec: groups: [{ | ||
name: "kube-state-metrics" | ||
rules: [{ | ||
alert: "KubeStateMetricsListErrors" | ||
annotations: { | ||
description: "kube-state-metrics is experiencing errors at an elevated rate in list operations. This is likely causing it to not be able to expose metrics about Kubernetes objects correctly or at all." | ||
runbook_url: "https://runbooks.prometheus-operator.dev/runbooks/kube-state-metrics/kubestatemetricslisterrors" | ||
summary: "kube-state-metrics is experiencing errors in list operations." | ||
} | ||
expr: """ | ||
(sum(rate(kube_state_metrics_list_total{job=\"kube-state-metrics\",result=\"error\"}[5m])) | ||
/ | ||
sum(rate(kube_state_metrics_list_total{job=\"kube-state-metrics\"}[5m]))) | ||
> 0.01 | ||
""" | ||
|
||
for: "15m" | ||
labels: severity: "critical" | ||
}, { | ||
alert: "KubeStateMetricsWatchErrors" | ||
annotations: { | ||
description: "kube-state-metrics is experiencing errors at an elevated rate in watch operations. This is likely causing it to not be able to expose metrics about Kubernetes objects correctly or at all." | ||
runbook_url: "https://runbooks.prometheus-operator.dev/runbooks/kube-state-metrics/kubestatemetricswatcherrors" | ||
summary: "kube-state-metrics is experiencing errors in watch operations." | ||
} | ||
expr: """ | ||
(sum(rate(kube_state_metrics_watch_total{job=\"kube-state-metrics\",result=\"error\"}[5m])) | ||
/ | ||
sum(rate(kube_state_metrics_watch_total{job=\"kube-state-metrics\"}[5m]))) | ||
> 0.01 | ||
""" | ||
|
||
for: "15m" | ||
labels: severity: "critical" | ||
}, { | ||
alert: "KubeStateMetricsShardingMismatch" | ||
annotations: { | ||
description: "kube-state-metrics pods are running with different --total-shards configuration, some Kubernetes objects may be exposed multiple times or not exposed at all." | ||
runbook_url: "https://runbooks.prometheus-operator.dev/runbooks/kube-state-metrics/kubestatemetricsshardingmismatch" | ||
summary: "kube-state-metrics sharding is misconfigured." | ||
} | ||
expr: "stdvar (kube_state_metrics_total_shards{job=\"kube-state-metrics\"}) != 0" | ||
for: "15m" | ||
labels: severity: "critical" | ||
}, { | ||
alert: "KubeStateMetricsShardsMissing" | ||
annotations: { | ||
description: "kube-state-metrics shards are missing, some Kubernetes objects are not being exposed." | ||
runbook_url: "https://runbooks.prometheus-operator.dev/runbooks/kube-state-metrics/kubestatemetricsshardsmissing" | ||
summary: "kube-state-metrics shards are missing." | ||
} | ||
expr: """ | ||
2^max(kube_state_metrics_total_shards{job=\"kube-state-metrics\"}) - 1 | ||
- | ||
sum( 2 ^ max by (shard_ordinal) (kube_state_metrics_shard_ordinal{job=\"kube-state-metrics\"}) ) | ||
!= 0 | ||
""" | ||
|
||
for: "15m" | ||
labels: severity: "critical" | ||
}] | ||
}] | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.