-
Notifications
You must be signed in to change notification settings - Fork 30
/
check_cdot_aggr.pl
executable file
·278 lines (207 loc) · 6.97 KB
/
check_cdot_aggr.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
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#!/usr/bin/perl
# nagios: -epn
# --
# check_cdot_aggr - Check Aggregate real Space Usage
# Copyright (C) 2013 noris network AG, http://www.noris.net/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
use strict;
use warnings;
use lib "/usr/lib/netapp-manageability-sdk/lib/perl/NetApp";
use NaServer;
use NaElement;
use Getopt::Long qw(:config no_ignore_case);
use Data::Dumper;
GetOptions(
'H|hostname=s' => \my $Hostname,
'u|username=s' => \my $Username,
'p|password=s' => \my $Password,
'w|warning=i' => \my $Warning,
'c|critical=i' => \my $Critical,
'A|aggr=s' => \my $Aggr,
'P|perf' => \my $perf,
'exclude=s' => \my @excludelistarray,
'regexp' => \my $regexp,
'h|help' => sub { exec perldoc => -F => $0 or die "Cannot execute perldoc: $!\n"; },
) or Error("$0: Error in command line arguments\n");
my %Excludelist;
@Excludelist{@excludelistarray} = ();
my $excludeliststr = join "|", @excludelistarray;
sub Error {
print "$0: ".$_[0]."\n";
exit 2;
}
Error( 'Option --hostname needed!' ) unless $Hostname;
Error( 'Option --username needed!' ) unless $Username;
Error( 'Option --password needed!' ) unless $Password;
Error( 'Option --warning needed!' ) unless $Warning;
Error( 'Option --critical needed!' ) unless $Critical;
my $perfmsg = '';
my $critical = 0;
my $warning = 0;
my $ok = 0;
my $crit_msg;
my $warn_msg;
my $ok_msg;
my $s = NaServer->new( $Hostname, 1, 21 );
$s->set_transport_type("HTTPS");
$s->set_style("LOGIN");
$s->set_admin_user( $Username, $Password );
my $iterator = NaElement->new( "aggr-get-iter" );
my $tag_elem = NaElement->new( "tag" );
$iterator->child_add( $tag_elem );
my $xi = new NaElement( 'desired-attributes' );
$iterator->child_add( $xi );
my $xi1 = new NaElement( 'aggr-attributes' );
$xi->child_add( $xi1 );
$xi1->child_add_string( 'aggregate-name', '<aggregate-name>' );
my $xi2 = new NaElement( 'aggr-space-attributes' );
$xi1->child_add( $xi2 );
$xi2->child_add_string( 'percent-used-capacity', '<percent-used-capacity>' );
$xi2->child_add_string( 'size-available', '<size-available>' );
$xi2->child_add_string( 'size-total', '<size-total>' );
$xi2->child_add_string( 'size-used', '<size-used>' );
my $xi3 = new NaElement( 'query' );
$iterator->child_add( $xi3 );
my $xi4 = new NaElement( 'aggr-attributes' );
$xi3->child_add( $xi4 );
if ($Aggr) {
$xi4->child_add_string( 'aggregate-name', $Aggr );
}
my $xi5 = new NaElement( 'query' );
$iterator->child_add( $xi5 );
my $next = "";
while(defined( $next )){
unless ($next eq "") {
$tag_elem->set_content( $next );
}
$iterator->child_add_string( "max-records", 100 );
my $output = $s->invoke_elem( $iterator );
if ($output->results_errno != 0) {
my $r = $output->results_reason();
print "UNKNOWN: $r\n";
exit 3;
}
my $aggrs = $output->child_get( "attributes-list" );
my @result = $aggrs->children_get();
foreach my $aggr (@result) {
my $aggr_name = $aggr->child_get_string( "aggregate-name" );
# exclude root aggregates
unless($aggr_name =~ m/^aggr0_/) {
next if exists $Excludelist{$aggr_name};
if ($regexp and $excludeliststr) {
if ($aggr_name =~ m/.$excludeliststr/) {
next;
}
}
my $space = $aggr->child_get( "aggr-space-attributes" );
my $bytesused = $space->child_get_int( "size-used" );
my $bytesavail = $space->child_get_int( "size-available" );
my $bytestotal = $space->child_get_int( "size-total" );
my $percent = $space->child_get_int( "percent-used-capacity" );
if($percent >= $Critical) {
$critical++;
if($crit_msg) {
$crit_msg .= ", " . $aggr_name . " (" . $percent . "%)";
} else {
$crit_msg .= $aggr_name . " (" . $percent . "%)";
}
} elsif ($percent >= $Warning) {
$warning++;
if ($warn_msg) {
$warn_msg .= ", " . $aggr_name . " (" . $percent . "%)";
} else {
$warn_msg .= $aggr_name . " (" . $percent . "%)";
}
} else {
$ok++;
if ($ok_msg) {
$ok_msg .= ", " . $aggr_name . " (" . $percent . "%)";
} else {
$ok_msg .= $aggr_name . " (" . $percent . "%)";
}
}
if ($perf) {
my $warn_bytes = $Warning*$bytestotal/100;
my $crit_bytes = $Critical*$bytestotal/100;
$perfmsg .= " $aggr_name=${bytesused}B;$warn_bytes;$crit_bytes;0;$bytestotal";
}
}
}
$next = $output->child_get_string( "next-tag" );
}
if($critical > 0) {
print "CRITICAL: $crit_msg\n\n";
if($warning > 0) {
print "WARNING: $warn_msg\n\n";
}
if($ok > 0) {
print "OK: $ok_msg";
}
if($perf) {print"|" . $perfmsg;}
print "\n";
exit 2;
} elsif($warning > 0) {
print "WARNING: $warn_msg\n\n";
if($ok > 0) {
print "OK: $ok_msg";
}
if($perf) {print"|" . $perfmsg;}
print "\n";
exit 1;
} else {
if($ok > 0) {
print "OK: $ok_msg";
} else {
print "OK - but no output\n";
}
if($perf) {print"|" . $perfmsg;}
print "\n";
exit 0;
}
__END__
=encoding utf8
=head1 NAME
check_cdot_aggr - Check Aggregate real Space Usage
=head1 SYNOPSIS
check_cdot_aggr.pl -H HOSTNAME -u USERNAME \
-p PASSWORD -w PERCENT_WARNING \
-c PERCENT_CRITICAL [--perf|-P] [--aggr AGGR]
=head1 DESCRIPTION
Checks the Aggregate real Space Usage of the NetApp System and warns
if warning or critical Thresholds are reached
=head1 OPTIONS
=over 4
=item -H | --hostname FQDN
The Hostname of the NetApp to monitor (Cluster or Node MGMT)
=item -u | --username USERNAME
The Login Username of the NetApp to monitor
=item -p | --password PASSWORD
The Login Password of the NetApp to monitor
=item -w | --warning PERCENT_WARNING
The Warning threshold
=item -c | --critical PERCENT_CRITICAL
The Critical threshold
=item -P | --perf
Flag for performance data output
=item -A | --aggr
Check only specific aggregate
=item --exclude
Optional: The name of an aggregate that has to be excluded from the checks (multiple exclude item for multiple aggregates)
=item -help
=item -?
to see this Documentation
=back
=head1 EXIT CODE
3 on Unknown Error
2 if Critical Threshold has been reached
1 if Warning Threshold has been reached
0 if everything is ok
=head1 AUTHORS
Alexander Krogloth <git at krogloth.de>
Stelios Gikas <sgikas at demokrit.de>
Stefan Grosser <sgr at firstframe.net>
Stephan Lang <stephan.lang at acp.at>