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%.
This commit is contained in:
Akihito INOH
2018-02-28 14:52:34 +09:00
parent 9764d157b1
commit 7fe4506ae4
2 changed files with 2 additions and 2 deletions

View File

@@ -365,7 +365,7 @@ data:
description: Prometheus failed to scrape {{ $value }}% of kubelets.
- alert: K8SKubeletDown
expr: (absent(up{job="kubelet"} == 1) or count(up{job="kubelet"} == 0) / count(up{job="kubelet"}))
* 100 > 1
* 100 > 10
for: 1h
labels:
severity: critical