-
Notifications
You must be signed in to change notification settings - Fork 18
/
check_mdadm.pl
executable file
·60 lines (56 loc) · 1.4 KB
/
check_mdadm.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/perl
# DMA - Dedibox Monitoring Agent
# Script de verification de l'etat du raid soft
# [email protected] - 07/12/2007
# Code original de Steve Milton
open (MDSTAT, "</proc/mdstat") or die "Failed to open /proc/mdstat";
my $found = 0;
my $status = "";
my $recovery = "";
my $finish = "";
my $active = "";
while(<MDSTAT>) {
if ($found) {
if (/(\[[_U]+\])/) {
$status = $1;
last;
} elsif (/recovery = (.*?)\s/) {
$recovery = $1;
($finish) = /finish=(.*?min)/;
last;
}
} else {
if (/^$ARGV[0]\s*:/) {
$found = 1;
if (/active/) {
$active = 1;
}
}
}
}
my $msg = "FAILURE";
my $code = "UNKNOWN";
if ($status =~ /_/) {
if ($recovery) {
$msg = sprintf "%s status=%s, recovery=%s, finish=%s\n",
$ARGV[0], $status, $recovery, $finish;
$code = "WARNING";
} else {
$msg = sprintf "%s status=%s\n", $ARGV[0], $status;
$code = "WARNING";
}
} elsif ($status =~ /U+/) {
$msg = sprintf "%s status=%s\n", $ARGV[0], $status;
$code = "OK";
} else {
if ($active) {
$msg = sprintf "%s active with no status information.\n",
$ARGV[0];
$code = "OK";
} else {
$msg = sprintf "%s does not exist.\n", $ARGV[0];
$code = "WARNING";
}
}
print $code."\n".$msg;
exit ($ERRORS{$code});