We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e5b1bc commit 9bd81afCopy full SHA for 9bd81af
alerts/kubelet.libsonnet
@@ -127,7 +127,12 @@ local utils = import '../lib/utils.libsonnet';
127
{
128
alert: 'KubeNodeEviction',
129
expr: |||
130
- sum(rate(kubelet_evictions{%(kubeletSelector)s}[15m])) by(%(clusterLabel)s, eviction_signal, node) > %(KubeNodeEvictionRateThreshold)s
+ sum(rate(kubelet_evictions{%(kubeletSelector)s}[15m])) by(%(clusterLabel)s, eviction_signal, instance)
131
+ * on (%(clusterLabel)s, instance) group_left(node)
132
+ max by (%(clusterLabel)s, instance, node) (
133
+ kubelet_node_name{%(kubeletSelector)s}
134
+ )
135
+ > %(KubeNodeEvictionRateThreshold)s
136
||| % $._config,
137
labels: {
138
severity: 'info',
0 commit comments