[project @ peter@palfrader.org-20080507195426-zzl3uubufrngcsjs]
authorPeter Palfrader <peter@palfrader.org>
Wed, 7 May 2008 19:54:26 +0000 (19:54 +0000)
committerPeter Palfrader <peter@palfrader.org>
Wed, 7 May 2008 19:54:26 +0000 (19:54 +0000)
Add dsa-check-hpacucli

dsa-nagios-nrpe-config/debian/changelog
dsa-nagios-nrpe-config/debian/copyright
dsa-nagios-nrpe-config/debian/rules
dsa-nagios-nrpe-config/dsa-check-hpacucli [new file with mode: 0755]

index 81bedb9..1be0700 100644 (file)
@@ -1,3 +1,9 @@
+dsa-nagios-nrpe-config (39) unstable; urgency=low
+
+  * Add dsa-check-hpacucli.
+
+ -- Peter Palfrader <weasel@debian.org>  Wed,  7 May 2008 19:54:18 +0000
+
 dsa-nagios-nrpe-config (38) unstable; urgency=low
 
   * Try harder to find version string.
index db7930c..28c92c2 100644 (file)
@@ -27,3 +27,8 @@ dsa-check-raid-3ware:
 dsa-check-running-kernel:
   Copyright: 2008 Peter Palfrader
   License: MIT
+
+########################################################################
+dsa-check-hpacucli:
+  Copyright: 2008 Peter Palfrader
+  License: MIT
index dcd7b8c..691a753 100755 (executable)
@@ -14,6 +14,7 @@ install:
        dh_installdirs
 
        install -m 644 nrpe_dsa.cfg $(CURDIR)/debian/dsa-nagios-nrpe-config/etc/nagios
+       install -m 755 dsa-check-hpacucli $(CURDIR)/debian/dsa-nagios-nrpe-config/usr/lib/nagios/plugins
        install -m 755 dsa-check-raid-dac960 $(CURDIR)/debian/dsa-nagios-nrpe-config/usr/lib/nagios/plugins
        install -m 755 dsa-check-raid-mpt $(CURDIR)/debian/dsa-nagios-nrpe-config/usr/lib/nagios/plugins
        install -m 755 dsa-check-raid-sw $(CURDIR)/debian/dsa-nagios-nrpe-config/usr/lib/nagios/plugins
diff --git a/dsa-nagios-nrpe-config/dsa-check-hpacucli b/dsa-nagios-nrpe-config/dsa-check-hpacucli
new file mode 100755 (executable)
index 0000000..26a07fe
--- /dev/null
@@ -0,0 +1,144 @@
+#!/usr/bin/perl -w
+
+# check _physical_ disk status of disks on HP smart array controllers
+# requires hpacucli
+#
+# does _not_ check raid status.  use arrayprobe for that.
+
+# Copyright (c) 2008 Peter Palfrader <peter@palfrader.org>
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be
+# included in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+use strict;
+
+# nagios exit codes
+my %CODE = (
+       'OK'            => 0,
+       'WARNING'       => 1,
+       'CRITICAL'      => 2,
+       'UNKNOWN'       => 3
+);
+
+my $EXITCODE = 'OK';
+
+$SIG{'__DIE__'} = sub {
+       print STDERR @_;
+       exit $CODE{'UNKNOWN'};
+};
+
+sub runcmd($) {
+       my ($cmd) = @_;
+       $cmd = "sudo hpacucli $cmd";
+       open(FH, $cmd."|") or die ("Cannot run $cmd: $!");
+       my @lines = <FH>;
+       close FH;
+       die ("no results from $cmd\n") if (scalar @lines == 0);
+       return \@lines;
+}
+
+sub record($) {
+       my ($newexit) = @_;
+       die "code $newexit not defined\n" unless defined $CODE{$newexit};
+
+       if ($CODE{$newexit} > $CODE{$EXITCODE}) {
+               $EXITCODE = $newexit;
+       };
+}
+
+
+my $ctrlallshow = runcmd("controller all show");
+my @controllers;
+for (@$ctrlallshow) {
+       chomp;
+       next if /^$/;
+       if (/in Slot ([0-9]+) /) {
+               push @controllers, $1;
+               next;
+       };
+       die ("Cannot read line '$_' gotten from hpacucli controller all show\n");
+};
+
+if (scalar @controllers == 0) {
+       print "UNKNONW: No smartarray controllers found with hpacucli\n";
+       exit $CODE{'UNKNOWN'}
+};
+
+my @resultstr;
+
+for my $slot (sort @controllers) {
+       my $pds = runcmd("controller slot=$slot pd all show");
+       my $nodrives = 0;
+       my %status;
+       for (@$pds) {
+               chomp;
+               next if /^$/;
+               next if /^ *array [A-Z]$/;
+               next if (/^\S.*in Slot $slot/);
+               if (/^Error: The specified controller does not have any physical drives on it.$/) {
+                       $nodrives = 1;
+               } elsif (/^ *physicaldrive (\S+) .* (OK|Predictive Failure|Failed)(?:, spare)?\)$/) {
+                       my $drive = $1;
+                       my $status = $2;
+                       push @{$status{$status}}, $drive;
+                       if ($status eq 'OK') {
+                       } elsif ($status eq 'Predictive Failure') {
+                               record('WARNING');
+                       } elsif ($status eq 'Failed') {
+                               record('CRITICAL');
+                       } else {
+                               record('UNKNOWN');
+                       };      
+               } else {
+                       die ("Cannot read line '$_' gotten from hpacucli controller slot=$slot pd all show\n");
+               };
+       };
+
+       if ($nodrives && scalar keys %status > 0) {
+               push @resultstr, "Slot $slot: have no drives but status results?";
+               record('UNKNOWN');
+               next;
+       } elsif ($nodrives) {
+               push @resultstr, "Slot $slot: no drives";
+               next;
+       };
+
+       my $cst = runcmd("controller slot=$slot show status");
+       for (@$cst) {
+               chomp;
+               next if /^$/;
+               next if (/^\S.*in Slot $slot/);
+               if (/^ *(.*) Status: (.*)$/) {
+                       my $system = $1;
+                       my $status = $2;
+                       push @{$status{$status}}, $system;
+                       if ($status ne 'OK') {
+                               record('WARNING');
+                       };
+               } else {
+                       die ("Cannot read line '$_' gotten from hpacucli controller slot=$slot show status\n");
+               };
+       };
+
+       my $status = join("; ", (map { $_.": ".join(", ", @{$status{$_}}) } keys %status));
+       push @resultstr, "Slot $slot: $status";
+};
+
+print "$EXITCODE: ", join(" - ", @resultstr), "\n";
+exit $CODE{$EXITCODE};