X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=dsa-nagios-checks%2Fchecks%2Fdsa-check-hpasm;h=0d46c642369502b2ebfddd5b98aa985d5ef31fd8;hb=87983c60272f1a65e0fe42f9933e8984191cabb8;hp=1a1c64ab10342fe814876e563b45dd49b63989f8;hpb=c3d9e79433d4f91462ec71e6d95ae6d84c36e8d3;p=mirror%2Fdsa-nagios.git diff --git a/dsa-nagios-checks/checks/dsa-check-hpasm b/dsa-nagios-checks/checks/dsa-check-hpasm index 1a1c64a..0d46c64 100755 --- a/dsa-nagios-checks/checks/dsa-check-hpasm +++ b/dsa-nagios-checks/checks/dsa-check-hpasm @@ -2,6 +2,8 @@ use strict; use warnings; +use English; +use Getopt::Long; # check status of various hardware devices (fans, temp, dimms, powersupply) # requires hpasmcli @@ -42,6 +44,24 @@ my %callbacks = ( 'SHOW TEMP' => \&do_temp, ); + +my $params = {}; + +Getopt::Long::config('bundling'); +if (!GetOptions ( + '--help' => \$params->{'help'}, + '--ps-no-redundant' => \$params->{'ps-no-redundant'}, + '--fan-no-redundant' => \$params->{'fan-no-redundant'}, + )) { + die ("$PROGRAM_NAME: Usage: $PROGRAM_NAME [--help] [--ps-no-redundant] [--fan-no-redundant]\n"); +}; +if ($params->{'help'}) { + print "$PROGRAM_NAME: Usage: $PROGRAM_NAME [--help] [--ps-no-redundant] [--fan-no-redundant]\n"; + print "Checks hp hardware health.\n"; + exit (0); +}; + + my $prompt = "hpasmcli>"; my $exit_status = 0; my $ret = ''; @@ -125,7 +145,7 @@ sub do_fans { $exit_status |= 1; } elsif ($line[5] ne 'Yes') { $message = sprintf("FAN%d: redundant=%s ",$fan_num, $line[5]); - $exit_status |= 1; + $exit_status |= 1 unless ($params->{'fan-no-redundant'}); } } elsif ($line =~ /($prompt|^\s*$)/) { last; @@ -176,7 +196,7 @@ sub do_powersupply { my $redundant = $1; if ($redundant ne 'Yes') { $message = sprintf("PS%d not redundant ", $ps_num); - $exit_status |= 1; + $exit_status |= 1 unless ($params->{'ps-no-redundant'}); } } elsif ($line =~ /($prompt|^\s*$)/) { last; @@ -222,13 +242,15 @@ sub do_temp { next if ($threshold eq '-'); $num_temp++; - my $off = $threshold - $current_temp; - if ($off <= 0) { - $message = sprintf("TEMP zone=%s %sC/%sC ", $zone, $current_temp, $threshold); - $exit_status |= 2; - } elsif ($off < ($threshold/10)) { - $message = sprintf("TEMP zone=%s %sC/%sC ", $zone, $current_temp, $threshold); - $exit_status |= 1; + if ($current_temp ne '-') { + my $off = $threshold - $current_temp; + if ($off <= 0) { + $message = sprintf("TEMP zone=%s %sC/%sC ", $zone, $current_temp, $threshold); + $exit_status |= 2; + } elsif ($off < ($threshold/10)) { + $message = sprintf("TEMP zone=%s %sC/%sC ", $zone, $current_temp, $threshold); + $exit_status |= 1; + } } } elsif ($line =~ /($prompt|^\s*$)/) { last;