Increased temperature warning and critical thresholds as the chips

SAS2208, SAS3008 and SAS3108 are all specified for use up to 115 degrees
(according to Broadcom/LSI). The former lower values (80 degrees Celsius
for warning) caused warnings for some users, although their servers are
operated at 22 degrees ambient temperature.
This commit is contained in:
Thomas Niedermeier
2016-11-18 10:57:51 +01:00
parent 4a772b708b
commit 33d439d018

View File

@ -33,8 +33,8 @@ use File::Which;
our $VERBOSITY = 0;
our $VERSION = "2.4";
our $NAME = "check_lsi_raid: Nagios/Icinga plugin to check LSI Raid Controller status";
our $C_TEMP_WARNING = 80;
our $C_TEMP_CRITICAL = 90;
our $C_TEMP_WARNING = 85;
our $C_TEMP_CRITICAL = 95;
our $PD_TEMP_WARNING = 40;
our $PD_TEMP_CRITICAL = 45;
our $BBU_TEMP_WARNING = 50;