OOPS! Last commit should have included these files.
[monitoring-plugins.git] / contrib / check_linux_raid.pl
blobda1aff84790fa2e74ae8480aa2f0032834e65a08
1 #!/usr/bin/perl -w
3 # Copyright (c) 2002 ISOMEDIA, Inc.
4 # originally written by Steve Milton
5 # later updates by sean finney <seanius@seanius.net>
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 # Usage: check_raid [raid-name]
22 # Example: check_raid md0
23 # WARNING md0 status=[UUU_U], recovery=46.4%, finish=123.0min
25 use strict;
26 use lib "/usr/local/nagios/libexec";
27 use utils qw(%ERRORS);
29 # die with an error if we're not on Linux
30 if ($^O ne 'linux') {
31 print "This plugin only applicable on Linux.\n";
32 exit $ERRORS{'UNKNOWN'};
35 sub max_state($$){
36 my ($a, $b) = @_;
37 if ($a eq "CRITICAL" || $b eq "CRITICAL") { return "CRITICAL"; }
38 elsif ($a eq "WARNING" || $b eq "WARNING") { return "WARNING"; }
39 elsif ($a eq "OK" || $b eq "OK") { return "OK"; }
40 elsif ($a eq "UNKNOWN" || $b eq "UNKNOWN") { return "UNKNOWN"; }
41 elsif ($a eq "DEPENDENT" || $b eq "DEPENDENT") { return "DEPENDENT"; }
42 return "UNKNOWN";
45 my $nextdev;
46 if(defined $ARGV[0]) { $nextdev = shift; }
47 else { $nextdev = "md[0-9]"; }
49 my $code = "UNKNOWN";
50 my $msg = "";
51 my %status;
52 my %recovery;
53 my %finish;
54 my %active;
55 my %devices;
57 while(defined $nextdev){
58 open (MDSTAT, "< /proc/mdstat") or die "Failed to open /proc/mdstat";
59 my $device = undef;
60 while(<MDSTAT>) {
61 if (defined $device) {
62 if (/(\[[_U]+\])/) {
63 $status{$device} = $1;
64 } elsif (/recovery = (.*?)\s/) {
65 $recovery{$device} = $1;
66 ($finish{$device}) = /finish=(.*?min)/;
67 } elsif (/^\s*$/) {
68 $device=undef;
70 } elsif (/^($nextdev)\s*:/) {
71 $device=$1;
72 $devices{$device}=$device;
73 if (/active/) {
74 $active{$device} = 1;
78 $nextdev = shift;
81 foreach my $k (sort keys %devices){
82 if ($status{$k} =~ /_/) {
83 if (defined $recovery{$k}) {
84 $msg .= sprintf " %s status=%s, recovery=%s, finish=%s.",
85 $devices{$k}, $status{$k}, $recovery{$k}, $finish{$k};
86 $code = max_state($code, "WARNING");
87 } else {
88 $msg .= sprintf " %s status=%s.", $devices{$k}, $status{$k};
89 $code = max_state($code, "CRITICAL");
91 } elsif ($status{$k} =~ /U+/) {
92 $msg .= sprintf " %s status=%s.", $devices{$k}, $status{$k};
93 $code = max_state($code, "OK");
94 } else {
95 if ($active{$k}) {
96 $msg .= sprintf " %s active with no status information.\n",
97 $devices{$k};
98 $code = max_state($code, "OK");
99 } else {
100 $msg .= sprintf " %s does not exist.\n", $devices{$k};
101 $code = max_state($code, "CRITICAL");
106 print $code, $msg, "\n";
107 exit ($ERRORS{$code});