-
Notifications
You must be signed in to change notification settings - Fork 4
/
check_7mode_snapshot_age.pl
executable file
·209 lines (153 loc) · 5.64 KB
/
check_7mode_snapshot_age.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
#!/usr/bin/perl
# --
# check_7mode_snapshot_age.pl - Check NetApp System Snapshot Age
# 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,
'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;
my $maxtime = 90 * 24 * 3600; # 7776000 (90 days)
my $sched_maxtime;
my $now = time;
my $old = 0;
my $old_snapshots;
my $s = NaServer->new( $Hostname, 1, 3 );
$s->set_transport_type( "HTTPS" );
$s->set_style( "LOGIN" );
$s->set_admin_user( $Username, $Password );
my $vol_output = $s->invoke( "volume-list-info" );
if(ref ($vol_output) eq "NaElement" && $vol_output->results_errno != 0){
$s->set_transport_type( "HTTP" );
$vol_output = $s->invoke( "volume-list-info" );
}
if ($vol_output->results_errno != 0) {
my $r = $vol_output->results_reason();
print "UNKNOWN: $r\n";
exit 3;
}
my $volumes = $vol_output->child_get( "volumes" );
my @vol_result = $volumes->children_get();
foreach my $vol (@vol_result) {
my $vol_name = $vol->child_get_string( "name" );
my $vol_state = $vol->child_get_string( "state" );
unless (($vol_state eq "offline") || ($vol_state eq "unknown")) {
my $sched_api = new NaElement( 'snapshot-get-schedule' );
$sched_api->child_add_string( 'volume', $vol_name );
my $sched_output = $s->invoke_elem( $sched_api );
if ($sched_output->results_errno != 0) {
my $r = $sched_output->results_reason();
print "UNKNOWN: $r\n";
exit 3;
}
my $nightly_sched;
my $weekly_sched;
if ($sched_output->child_get_string( "days" ) && $sched_output->child_get_string( "weeks" )) {
$nightly_sched = $sched_output->child_get_string( "days" );
$weekly_sched = $sched_output->child_get_string( "weeks" );
# +172800 (2 days) because the snapshot isn't deleted instant
if ($nightly_sched != 0) {
$sched_maxtime = ($nightly_sched * 24 * 3600) + 172800;
}
if ($weekly_sched != 0) {
$sched_maxtime = ($weekly_sched * 7 * 24 * 3600) + 172800;
}
} else {
$sched_maxtime = $maxtime;
}
my $api = new NaElement( 'snapshot-list-info' );
$api->child_add_string( 'volume', $vol_name );
my $snapshot_output = $s->invoke_elem( $api );
if ($snapshot_output->results_errno != 0) {
my $r = $snapshot_output->results_reason();
print "UNKNOWN: $r\n";
exit 3;
}
my $snapshots = $snapshot_output->child_get( "snapshots" );
if ($snapshots) {
my @snap_result = $snapshots->children_get();
foreach my $snapshot (@snap_result) {
my $snap_name = $snapshot->child_get_string( "name" );
my $snap_time = $snapshot->child_get_string( "access-time" );
my $age = $now - $snap_time;
if ($snap_name =~ m/^(hourly|nightly|weekly)\./) {
if (($vol_name !~ m/^snapmirror/) || ($snap_name !~ m/^sv_/)) {
if ($age > $sched_maxtime) {
$old++;
if ($old_snapshots) {
$old_snapshots .= ", $vol_name/$snap_name (Age: $age)";
} else {
$old_snapshots = "$vol_name/$snap_name (Age: $age)";
}
}
}
} else {
unless ($snap_name =~ m/^sv_/) {
if ($age > $maxtime) {
$old++;
if ($old_snapshots) {
$old_snapshots .= ", $vol_name/$snap_name";
} else {
$old_snapshots = "$vol_name/$snap_name";
}
}
}
}
}
}
}
}
if ($old ne "0") {
print "$old dead snapshot(s) older than scheduled:\n";
print "$old_snapshots\n";
exit 1;
} else {
print "No dead snapshots older than scheduled\n";
exit 0;
}
__END__
=encoding utf8
=head1 NAME
check_7mode_snapshot_age.pl - Nagios Plugin - Check NetApp 7-Mode Snapshot Age
=head1 SYNOPSIS
check_7mode_snapshot_age.pl --hostname HOSTNAME --username USERNAME \
--password PASSWORD
=head1 DESCRIPTION
Checks if there are any snapshots older than 90 days
=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 -help
=item -?
to see this Documentation
=back
=head1 EXIT CODE
3 if timeout occured
1 if there are any snapshots older than 90 days
0 if everything is ok
=head1 AUTHORS
Alexander Krogloth <git at krogloth.de>