Skip to content
Snippets Groups Projects
Commit 7fe4506a authored by Akihito INOH's avatar Akihito INOH
Browse files

Update alert rule for kubelet

Update alert rule check kubelet down ratio from 1% to 10%.
In #774 , it is changed to 1%, so returns to 10%.
parent 9764d157
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ groups: ...@@ -28,7 +28,7 @@ groups:
description: Prometheus failed to scrape {{ $value }}% of kubelets. description: Prometheus failed to scrape {{ $value }}% of kubelets.
- alert: K8SKubeletDown - alert: K8SKubeletDown
expr: (absent(up{job="kubelet"} == 1) or count(up{job="kubelet"} == 0) / count(up{job="kubelet"})) expr: (absent(up{job="kubelet"} == 1) or count(up{job="kubelet"} == 0) / count(up{job="kubelet"}))
* 100 > 1 * 100 > 10
for: 1h for: 1h
labels: labels:
severity: critical severity: critical
......
...@@ -365,7 +365,7 @@ data: ...@@ -365,7 +365,7 @@ data:
description: Prometheus failed to scrape {{ $value }}% of kubelets. description: Prometheus failed to scrape {{ $value }}% of kubelets.
- alert: K8SKubeletDown - alert: K8SKubeletDown
expr: (absent(up{job="kubelet"} == 1) or count(up{job="kubelet"} == 0) / count(up{job="kubelet"})) expr: (absent(up{job="kubelet"} == 1) or count(up{job="kubelet"} == 0) / count(up{job="kubelet"}))
* 100 > 1 * 100 > 10
for: 1h for: 1h
labels: labels:
severity: critical severity: critical
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment