forked from skyscrapers/monitoring-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_dir
executable file
·353 lines (277 loc) · 8.47 KB
/
check_dir
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
#!/usr/bin/perl -w
package main;
# RCS information (required by Perl::Critic)
# enable substitution with:
# $ svn propset svn:keywords "Id Revision HeadURL Source Date"
#
# $Id: check_dir 1259 2011-06-29 15:18:19Z corti $
# $Revision: 1259 $
# $HeadURL: https://svn.id.ethz.ch/nagios_plugins/check_dir/check_dir $
# $Date: 2011-06-29 17:18:19 +0200 (Wed, 29 Jun 2011) $
use 5.00800;
use strict;
use warnings;
use English qw(-no_match_vars);
use Nagios::Plugin;
use Nagios::Plugin::Range;
use Nagios::Plugin::Getopt;
use Nagios::Plugin::Threshold;
our $VERSION = '3.0.0';
# IMPORTANT: Nagios plugins could be executed using embedded perl in this case
# the main routine would be executed as a subroutine and all the
# declared subroutines would therefore be inner subroutines
# This will cause all the global lexical variables not to stay shared
# in the subroutines!
#
# All variables are therefore declared as package variables...
#
## no critic (ProhibitPackageVars)
use vars qw(
$n
$plugin
$options
$status
$info_string
$threshold
);
## use critc
# the script is declared as a package so that it can be unit tested
# but it should not be used as a module
if ( !caller ) {
run();
}
##############################################################################
# subroutines
##############################################################################
# Usage : exit_with_error( $status, $message)
# Purpose : if a plugin object is available exits via ->nagios_exit
# otherwise prints to the shell and exit normally
# Returns : n/a
# Arguments : n/a
# Throws : n/a
# Comments : n/a
# See also : n/a
sub exit_with_error {
my $status = shift;
my $message = shift;
if ($plugin) {
$plugin->nagios_exit( $status, $message );
}
else {
#<<<
print "Error: $message"; ## no critic (RequireCheckedSyscalls)
#>>>
exit $status;
}
return;
}
##############################################################################
# Usage : max($i, $j)
# Purpose : returns the maximum of two integers
# Returns : the maximum of two integers
# Arguments : the integers to compare
# Throws : n/a
# Comments : n/a
# See also : n/a
sub max {
my ( $i, $j ) = @_;
if ( $i > $j ) {
return $i;
}
else {
return $j;
}
}
##############################################################################
# Usage : verbose("some message string", $optional_verbosity_level);
# Purpose : write a message if the verbosity level is high enough
# Returns : n/a
# Arguments : message : message string
# level : options verbosity level
# Throws : n/a
# Comments : n/a
# See also : n/a
sub verbose {
# arguments
my $message = shift;
my $level = shift;
if ( !defined $message ) {
exit_with_error( UNKNOWN,
q{Internal error: not enough parameters for 'verbose'} );
}
if ( !defined $level ) {
$level = 0;
}
if ( $options && $level < $options->verbose ) {
print $message; ## no critic (RequireCheckedSyscalls)
}
return;
}
##############################################################################
# Usage : @files = get_entries("directory_name")
# Purpose : reads the entries in the given directory
# Returns : number of entries
# Arguments : dirname: the name of the directory to check
# Throws : n/a
# Comments : n/a
# See also : n/a
sub get_entries {
my $dirname = shift;
#######################
# get directory listing
verbose "Opening $dirname\n", 1;
my $DIR;
opendir $DIR, $dirname
or exit_with_error( UNKNOWN, "Can't open $dirname: $OS_ERROR" );
# exclude .. and . from the count *and* recursion
my @files = grep { $_ ne q{.} && $_ ne q{..} } readdir $DIR;
closedir $DIR
or exit_with_error( UNKNOWN, "Error closing $dirname: $OS_ERROR" );
return @files;
}
##############################################################################
# Usage : check_dir("directory_name")
# Purpose : checks the number of files in the given directory
# Returns : n/a
# Arguments : dirname: the name of the directory to check
# Throws : n/a
# Comments : n/a
# See also : n/a
sub check_dir {
my $dirname = shift;
my $info;
####################################
# check if the directory is readable
$info = stat $dirname
or exit_with_error( UNKNOWN, "Can't read stat for $dirname: $OS_ERROR" );
my @files = get_entries($dirname);
my $n = @files;
#################
# Additional info
verbose "Directory '$dirname' has $n files\n";
#################
# Output (status)
$plugin->add_perfdata(
label => $dirname,
value => $n,
uom => q{},
threshold => $threshold,
);
if ( defined $info_string ) {
$info_string = "$info_string, $dirname=$n";
}
else {
$info_string = "$dirname=$n";
}
$status = max( $status, $threshold->get_status($n) );
###########
# Recursive
if ( $options->get('recursive') ) {
foreach my $file (@files) {
if ( -d "$dirname/$file" ) {
my $error = check_permissions("$dirname/$file");
if ($error) {
exit_with_error( UNKNOWN, "Error: $error" );
}
check_dir("$dirname/$file");
}
}
}
return;
}
##############################################################################
# Usage : check_permissions( $dirname )
# Purpose : checks if the directory is readable
# Returns : undef if OK or error message if the directory is not readable
# Arguments : dirname: the name of the directory to check
# Throws : n/a
# Comments : n/a
# See also : n/a
sub check_permissions {
my $dirname = shift;
if ( !-d $dirname ) {
return "$dirname is not a directory";
}
if ( !-r $dirname ) {
return "$dirname is not readable";
}
if ( !-x $dirname ) {
return "$dirname is not executable";
}
return;
}
##############################################################################
# Usage : run();
# Purpose : main method
# Returns : n/a
# Arguments : n/a
# Throws : n/a
# Comments : n/a
# See also : n/a
sub run {
# initialization
$plugin = Nagios::Plugin->new( shortname => 'CHECK_DIR' );
$status = 0;
########################
# Command line arguments
$options = Nagios::Plugin::Getopt->new(
usage => 'Usage: %s [OPTIONS]',
version => $VERSION,
url => 'https://trac.id.ethz.ch/projects/nagios_plugins',
blurb => 'cheks the number of files in one or more directories.',
);
$options->arg(
spec => 'dir|d=s@',
help => 'specify the directory (can be repeated)',
required => 1,
);
$options->arg(
spec => 'critical|c=s',
help => 'specify the critical number (or range) of files',
required => 1,
);
$options->arg(
spec => 'warning|w=s',
help => 'specify warning threshold (range) for the number of files',
required => 1,
);
$options->arg(
spec => 'recursive|r',
default => 0,
help =>
'perform recursive traversal (checks individual dirs not the total)',
);
$options->getopts();
#############################
# Sanity checks: command line
my $critical_range =
Nagios::Plugin::Range->parse_range_string( $options->get('critical') );
if ( !$critical_range->is_set() ) {
exit_with_error( UNKNOWN, 'Could not parse "critical"' );
}
my $warning_range =
Nagios::Plugin::Range->parse_range_string( $options->get('warning') );
if ( !$critical_range->is_set() ) {
exit_with_error( UNKNOWN, 'Could not parse "warning"' );
}
$threshold = Nagios::Plugin::Threshold->set_thresholds(
warning => $warning_range,
critical => $critical_range,
);
##########################
# Sanity checks: directory
foreach my $dirname ( @{ $options->get('dir') } ) {
my $error = check_permissions($dirname);
if ($error) {
exit_with_error( UNKNOWN, "Error: $error" );
}
}
#############
# Process dir
foreach my $dirname ( @{ $options->get('dir') } ) {
check_dir($dirname);
}
exit_with_error( $status, $info_string );
return;
}
1;