From 965fefab898303f12a92f6140ae5005215819068 Mon Sep 17 00:00:00 2001 From: Samuel Berthe Date: Mon, 28 Dec 2020 16:40:11 +0100 Subject: [PATCH] fix alert description --- _data/rules.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/rules.yml b/_data/rules.yml index 082b690..255e3d4 100644 --- a/_data/rules.yml +++ b/_data/rules.yml @@ -170,8 +170,8 @@ groups: description: CPU load is > 80% query: '100 - (avg by(instance) (rate(node_cpu_seconds_total{mode="idle"}[5m])) * 100) > 80' severity: warning - - name: CPU steal - description: CPU steal is > 10% + - name: CPU steal noisy neighbor + description: CPU steal is > 10%. A noisy neighbor is killing VM performances or a spot instance may be out of credit. query: 'avg by(instance) (rate(node_cpu_seconds_total{mode="steal"}[5m])) * 100 > 10' severity: warning - name: Host context switching