From 2486223f4fe7dc22210df23f48ec5999a6cb542d Mon Sep 17 00:00:00 2001 From: "Costa Tsaousis (ktsaou)" Date: Thu, 18 Aug 2016 03:58:16 +0300 Subject: [PATCH] to prevent false alarms use 5min of data instead of 2min of data --- conf.d/health.d/disks.conf | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/conf.d/health.d/disks.conf b/conf.d/health.d/disks.conf index 0686fa3f..7b6cac24 100644 --- a/conf.d/health.d/disks.conf +++ b/conf.d/health.d/disks.conf @@ -50,9 +50,10 @@ template: disk_full_after_hours # by calculating the average disk utilization # for the last 2 minutes -template: 2min_disk_utilization +template: 5min_disk_utilization on: disk.util - lookup: average -2m every 1m unaligned + lookup: average -5m unaligned + every: 1m green: 80 red: 95 warn: $this > $green @@ -64,9 +65,9 @@ template: 2min_disk_utilization # for 2 minutes # (i.e. the disk cannot catch up) -template: 2min_disk_backlog +template: 5min_disk_backlog on: disk.backlog - lookup: average -2m every 1m unaligned + lookup: average -5m every 1m unaligned green: 1000 red: 2000 warn: $this > $green -- 2.39.2