-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcheck_7mode_volume.pl
executable file
·173 lines (121 loc) · 4.7 KB
/
check_7mode_volume.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
#!/usr/bin/perl
# --
# check_7mode_volume.pl - Check NetApp System Volume 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;
GetOptions(
'hostname=s' => \my $Hostname,
'username=s' => \my $Username,
'password=s' => \my $Password,
'volume=s' => \my $Volume,
'size-warning=i' => \my $Size_Warning,
'size-critical=i' => \my $Size_Critical,
'inode-warning=i' => \my $Inode_Warning,
'inode-critical=i' => \my $Inode_Critical,
'help|?' => sub { exec perldoc => -F => $0 or die "Cannot execute perldoc: $!\n"; },
) or Error( "$0: Error in command line arguments\n" );
sub Error {
print "$0: ".shift;
exit 2;
}
Error( 'Option --hostname needed!' ) unless $Hostname;
Error( 'Option --username needed!' ) unless $Username;
Error( 'Option --password needed!' ) unless $Password;
Error( 'Option --volume needed!' ) unless $Volume;
Error( 'Option --size-warning needed!' ) unless $Size_Warning;
Error( 'Option ---size-critical needed!' ) unless $Size_Critical;
Error( 'Option --inode-warning needed!' ) unless $Inode_Warning;
Error( 'Option ---inode-critical needed!' ) unless $Inode_Critical;
my $s = NaServer->new ( $Hostname, 1, 3 );
$s->set_transport_type( "HTTPS" );
$s->set_style( "LOGIN" );
$s->set_admin_user( $Username, $Password );
$s->set_timeout( 60 );
my $output = $s->invoke( "volume-list-info", "volume", $Volume );
if(ref ($output) eq "NaElement" && $output->results_errno != 0){
$s->set_transport_type( "HTTP" );
$output = $s->invoke( "volume-list-info" );
}
if ($output->results_errno != 0) {
my $r = $output->results_reason();
print "UNKNOWN: $r\n";
exit 3;
}
my $vols = $output->child_get( "volumes" );
my @result = $vols->children_get();
foreach my $vol (@result) {
my $state = $vol->child_get_string( "state" );
if ($state eq "restricted") {
print "WARNING: Volume '$Volume' restricted";
exit 1;
} elsif ($state eq "offline") {
print "WARNING: Volume '$Volume' offline";
exit 1;
} else {
my $inode_used = $vol->child_get_int( "files-used" );
my $inode_total = $vol->child_get_int( "files-total" );
my $inode_percent = sprintf( "%.2f", $inode_used / $inode_total * 100 );
my $used = $vol->child_get_int( "percentage-used" );
if (($used >= $Size_Critical) || ($inode_percent >= $Inode_Critical)) {
print "CRITICAL: $Volume (Size: $used%, Inodes: $inode_percent%) | size=$used%;$Size_Warning;$Size_Critical inode=$inode_percent%;$Inode_Warning;$Inode_Critical\n";
exit 2;
} elsif (($used >= $Size_Warning) || ($inode_percent >= $Inode_Warning)) {
print "WARNING: $Volume (Size: $used%, Inodes: $inode_percent%) | size=$used%;$Size_Warning;$Size_Critical inode=$inode_percent%;$Inode_Warning;$Inode_Critical\n";
exit 1;
} else {
print "OK: $Volume (Size: $used%, Inodes: $inode_percent%) | size=$used%;$Size_Warning;$Size_Critical inode=$inode_percent%;$Inode_Warning;$Inode_Critical\n";
exit 0;
}
}
}
__END__
=encoding utf8
=head1 NAME
check_7mode_volume.pl - Nagios Plugin - Check NetApp 7-Mode Volume Usage
=head1 SYNOPSIS
check_7mode_volume.pl --hostname HOSTNAME --username USERNAME \
--password PASSWORD --size-warning WARNING --size-critical CRITICAL \
--inode-warning WARNING --inode-critical WARNING \
--volume VOLUME
=head1 DESCRIPTION
Checks volume space usage for specified volume
=head1 OPTIONS
=over 4
=item --hostname FQDN
The Hostname of the NetApp 7-Mode filer to collect the data
=item --username USERNAME
The Login Username of the monitoring-User
=item --password PASSWORD
The Login Password of the monitoring-User
=item --size-warning WARNING
The Warning Threshold for Volume Space Usage
=item --size-critical CRITICAL
The Critical Threshold for Volume Space Usage
=item --inode-warning WARNING
The Warning Threshold for Volume Inode Usage
=item --inode-critical CRITICAL
The Critical Threshold for Volume Inode Usage
=item --volume VOLUME
The volume to check
=item -help
=item -?
to see this Documentation
=back
=head1 EXIT CODE
3 if timeout occured
2 if the volume is fuller than CRITICAL
1 if the volume is fuller than WARNING
0 if everything is ok
=head1 AUTHORS
Alexander Krogloth <git at krogloth.de>
Stephan Lang <stephan.lang at acp.at>