diff options
author | Gabriel Filion <gabriel@koumbit.org> | 2011-05-26 15:58:26 -0400 |
---|---|---|
committer | Gabriel Filion <lelutin@gmail.com> | 2012-04-10 00:09:15 -0400 |
commit | ba5ef8e555e16f9fb6a5e6bb8f8d5bf3c12c1827 (patch) | |
tree | 0c2d8f693357a43a7ac93107aba116908fc917b1 | |
parent | 7fb80fbecfa5a186846a2909bd1d6ada32ba21e1 (diff) |
nrpe: bump up multipliers for check_load
The CPU checks were fireing way too often. Bump up the multipliers to
reduce the number of alerts.
-rw-r--r-- | manifests/nrpe/base.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/nrpe/base.pp b/manifests/nrpe/base.pp index 1d26849..c14692e 100644 --- a/manifests/nrpe/base.pp +++ b/manifests/nrpe/base.pp @@ -29,9 +29,9 @@ class nagios::nrpe::base { } # the check for load should be customized for each server based on number # of CPUs and the type of activity. - $warning_1_threshold = 5 * $processorcount - $warning_5_threshold = 4 * $processorcount - $warning_15_threshold = 3 * $processorcount + $warning_1_threshold = 7 * $processorcount + $warning_5_threshold = 6 * $processorcount + $warning_15_threshold = 5 * $processorcount $critical_1_threshold = 10 * $processorcount $critical_5_threshold = 9 * $processorcount $critical_15_threshold = 8 * $processorcount |