check_hp_health.pl

Monitor the health state of you HP ProLiant.

Please note: There is another more extensive plugin available at labs.consol.de.

This plugin uses the ProLiant Support Pack to check the health of you HP server. See my article to learn how to setup the software on Debian/Ubuntu systems.

By default all checks are performed, but some of them might not be supported on your system. You can disable single checks with:

1
2
3
4
5
6
--no-check-ctrl         skip CONTROLLER checks
--no-check-server       skip SERVER checks
--no-check-powersupply  skip POWERSUPPLY checks
--no-check-temp         skip TEMPERATURE checks
--no-check-dimms        skip RAM checks
--no-check-fans         skip FAN checks

The current version doesn’t support fan-checks until HP tells me how to read the output (read more at the article), so you will have to run this plugin at least with --no-check-fans.

Here is the code:

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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
#!/usr/bin/perl -w
###################################
#
#     HP ProLiant health Monitoring
#     written by Martin Scharm
#       see http://binfalse.de
#
#     tested with v8.60
#
###################################

use warnings;
use strict;
use lib '/usr/lib/nagios/plugins';
use utils qw(%ERRORS);
use Getopt::Long;

# binaries of ProLiant Support Pack
my $hpasmcli = "/sbin/hpasmcli";
my $hpacucli = "/usr/sbin/hpacucli";

# some of them might not be supported on your system, so disable them...
# hpasmcli -s SHOW DIMM
my $no_check_dimms = 0;
# hpasmcli -s SHOW FANS
my $no_check_fans = 0;
# hpasmcli -s SHOW POWERSUPPLY
my $no_check_powersupply = 0;
# hpasmcli -s SHOW SERVER
my $no_check_server = 0;
# hpasmcli -s SHOW TEMP
my $no_check_temp = 0;
# hpacucli ctrl all show config detail
my $no_check_ctrl = 0;
my $help = 0;

GetOptions (
    'no-check-dimms' => \$no_check_dimms,
    'no-check-fans' => \$no_check_fans,
    'no-check-powersupply' => \$no_check_powersupply,
    'no-check-server' => \$no_check_server,
    'no-check-temp' => \$no_check_temp,
    'no-check-ctrl' => \$no_check_ctrl,
    'help' => \$help,
    'h' => \$help);

my $dummy = undef;
my $err = "";
my $dbg = "";

$err .= "$hpasmcli not executeable\n" if (!-x $hpasmcli);
$err .= "$hpacucli not executeable\n" if (!-x $hpacucli);

if ($err || $help || ($no_check_dimms && $no_check_fans && $no_check_powersupply && $no_check_server && $no_check_temp && $no_check_ctrl))
{
    print $err . "\n\n" if ($err);
    print "PARAMETER:\n";
    print "\t--no-check-ctrl\tskip CONTROLLER checks\n";
    print "\t--no-check-server\tskip SERVER checks\n";
    print "\t--no-check-powersupply\tskip POWERSUPPLY checks\n";
    print "\t--no-check-temp\tskip TEMPERATURE checks\n";
    print "\t--no-check-dimms\tskip RAM checks\n";
    print "\t--no-check-fans\tskip FAN checks\n";
    print "\t--help\tprint this help\n";
    print "some of these checks might not be supported on your machine, so skip them as you like.\n";
    exit $ERRORS{'UNKNOWN'};
}



if (!$no_check_ctrl)
{
    my $ctrlerrs = 0;
    my $ctrldbg = "CTRL: ";
    my $slot = "";
    my $array = "";
    $dummy = "";
    open CMD, $hpacucli.' ctrl all show config |';
    while (<CMD>)
    {
        chomp;
        next if (m/^$/);
        if (m/Slot\s*(\d+)/) {$slot = $1; next;}
        if (m/array\s*(\S+)/) {$array = $1; next;}
       
        if (m/^\s*(\S)\S+drive\s(\S+).*\s+(\S+)\)/)
        {
            if ($3 ne "OK")
            {
                $ctrlerrs++;
                $ctrldbg .= "slot $slot array $array ".$1."d $2: $3; ";
            }
        }
    }
    if ($ctrlerrs)
    {
        $err .= "$ctrlerrs CTRL ERRs; ";
        $dbg .= $ctrldbg;
    }
    close CMD;
}

if (!$no_check_server)
{
    my $serrs = 0;
    my $sdbg = "SERVER: ";
    $dummy = "";
    open CMD, $hpasmcli.' -s "SHOW SERVER" |';
    while (<CMD>)
    {
        chomp if (m/./);
        if (m/^\S|^$/)
        {
            if ($dummy && $dummy =~ m/Processor\s*:/ && $dummy !~ m/Status\s*:\s*Ok/)
            {
                #print $dummy." \n";
                $dummy =~ m/^Processor\s*:\s*(\d+).*Status\s*:\s*(\S+)/;
                $sdbg .= "$1: $2; ";
                $serrs++;
            }
            $dummy = $_;
        }
        elsif (m/\s+\S/)
        {
            $dummy .= $_;
        }
    }
    if ($serrs)
    {
        $err .= "$serrs SERVER ERRs; ";
        $dbg .= $sdbg;
    }
    close CMD;
}

if (!$no_check_powersupply)
{
    my $pserrs = 0;
    my $psdbg = "POWERSUPPLY: ";
    $dummy = "";
    open CMD, $hpasmcli.' -s "SHOW POWERSUPPLY" |';
    while (<CMD>)
    {
        chomp if (m/./);
        if (m/^\S|^$/)
        {
            if ($dummy && $dummy =~ m/Present\s*:\s*Yes/ && $dummy !~ m/Condition\s*:\s*Ok/)
            {
                #print $dummy." \n";
                $dummy =~ m/^Power supply #(\d+).*Condition\s*:\s*(\S+)/;
                $psdbg .= "$1: $2; ";
                $pserrs++;
            }
            $dummy = $_;
        }
        elsif (m/\s+\S/)
        {
            $dummy .= $_;
        }
    }
    if ($pserrs)
    {
        $err .= "$pserrs POWERSUPPLY ERRs; ";
        $dbg .= $psdbg;
    }
    close CMD;
}

if (!$no_check_temp)
{
    my $terrs = 0;
    my $tdbg = "TEMP: ";
    $dummy = "";
    open CMD, $hpasmcli.' -s "SHOW TEMP" |';
    while (<CMD>)
    {
        chomp if (m/./);
       
        if (m/^#(\d+)\s*(\w+)\s*(\d+)C\/\d+F\s*(\d+)C\/\d+F\s*$/)
        {
            if ($3 > $4)
            {
                $tdbg .= "$2($1): ".$3."C (thresh ".$4."C); ";
                $terrs++;
            }
        }
    }
    if ($terrs)
    {
        $err .= "$terrs TEMP ERRs; ";
        $dbg .= $tdbg;
    }
    close CMD;
}

if (!$no_check_fans)
{
    $err .= "FAN checks not supported yet; ";
    $dbg .= "Skipping FAN-checks. Not supported unless HP tells me smth about the output..; ";
}

if (!$no_check_dimms)
{
    my $ramerrs = 0;
    my $ramerrsdbg = "RAM: ";
    $dummy = "";
    open CMD, $hpasmcli.' -s "SHOW DIMM" |';
    while (<CMD>)
    {
        chomp if (m/./);
        if (length > 1)
        {
            $dummy .= $_;
        }
        else
        {
            if ($dummy && $dummy =~ m/Present:\s*Yes/ && $dummy !~ m/Status:\s*OK$/)
            {
                $dummy =~ m/Cartridge #:\s*(\d)Processor #:\s*(\d+)Module #:\s*(\d+).*Status:\s*(\S*)/;
                $ramerrsdbg .= "$1/$2/$3: $4; ";
                $ramerrs++;
            }
            $dummy = "";
        }
    }
    if ($ramerrs)
    {
        $err .= "$ramerrs RAM ERRs; ";
        $dbg .= $ramerrsdbg;
    }
    close CMD;
}


if ($err)
{
    print $err . "|" . $dbg . "\n";
    exit $ERRORS{'CRITICAL'};
}

print "Everything's alright.|" . $dbg . "\n";
exit $ERRORS{'OK'};

Dependencies

Please consider to take a look at my general setup notes.

Download:
Perl: check_hp_health.pl
(Please take a look at the man-page. Browse bugs and feature requests.)

Leave a Reply