From cbc281cea7967032550bf3304c8e7634a79f9f05 Mon Sep 17 00:00:00 2001 From: Bertrand Mailhe Date: Mon, 25 Jan 2021 17:50:16 +0100 Subject: [PATCH] fix rule -Container Volume usage- Signed-off-by: Bertrand Mailhe --- _data/rules.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/rules.yml b/_data/rules.yml index 9c9042b..c9d1b9e 100644 --- a/_data/rules.yml +++ b/_data/rules.yml @@ -307,7 +307,7 @@ groups: for: 2m - name: Container Volume usage description: Container Volume usage is above 80% - query: '(1 - (sum(container_fs_inodes_free) BY (instance) / sum(container_fs_inodes_total) BY (instance)) * 100) > 80' + query: '(1 - (sum(container_fs_inodes_free) BY (instance) / sum(container_fs_inodes_total) BY (instance))) * 100 > 80' severity: warning for: 2m - name: Container Volume IO usage