summaryrefslogtreecommitdiffstats
path: root/conf.d
diff options
context:
space:
mode:
authorCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2017-06-21 22:55:34 +0300
committerCosta Tsaousis (ktsaou) <costa@tsaousis.gr>2017-06-21 22:55:34 +0300
commit678bfeb6c9dcef37a94fd4811a2b1759156bce96 (patch)
tree1c090d638b49c9b0953e9708a6a1e9dbb668b33b /conf.d
parent86fce5750f83373925bafee5d637f93bcbe739aa (diff)
excluded zfs arc from used memory alarm; fixes #2271
Diffstat (limited to 'conf.d')
-rw-r--r--conf.d/health.d/ram.conf9
1 files changed, 8 insertions, 1 deletions
diff --git a/conf.d/health.d/ram.conf b/conf.d/health.d/ram.conf
index d60df75b20..b99e5e226c 100644
--- a/conf.d/health.d/ram.conf
+++ b/conf.d/health.d/ram.conf
@@ -1,7 +1,14 @@
+ alarm: used_ram_to_ignore
+ on: system.ram
+ calc: ($zfs.arc_size.arcsz = nan)?(0):($zfs.arc_size.arcsz)
+ every: 10s
+ info: the amount of memory that is reported as used, but it is actually capable for resizing itself based on the system needs (eg. ZFS ARC)
+
alarm: ram_in_use
on: system.ram
- calc: $used * 100 / ($used + $cached + $free)
+# calc: $used * 100 / ($used + $cached + $free)
+ calc: ($used - $used_ram_to_ignore) * 100 / ($used - $used_ram_to_ignore + $cached + $free)
units: %
every: 10s
warn: $this > (($status >= $WARNING) ? (80) : (90))