]> arthur.barton.de Git - netdata.git/commitdiff
to prevent false alarms use 5min of data instead of 2min of data
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Thu, 18 Aug 2016 00:58:16 +0000 (03:58 +0300)
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>
Thu, 18 Aug 2016 00:58:16 +0000 (03:58 +0300)
conf.d/health.d/disks.conf

index 0686fa3fca7d62f9ff3a0a414736c5b3f8de3fc9..7b6cac24427849991c98995f4880c146b823f28d 100644 (file)
@@ -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