summaryrefslogtreecommitdiffstats
path: root/plugins-scripts/check_file_age.pl
diff options
context:
space:
mode:
Diffstat (limited to 'plugins-scripts/check_file_age.pl')
-rwxr-xr-xplugins-scripts/check_file_age.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins-scripts/check_file_age.pl b/plugins-scripts/check_file_age.pl
index 453e0f5..4415fdf 100755
--- a/plugins-scripts/check_file_age.pl
+++ b/plugins-scripts/check_file_age.pl
@@ -34,7 +34,7 @@ sub print_help ();
34sub print_usage (); 34sub print_usage ();
35 35
36my ($opt_c, $opt_f, $opt_w, $opt_C, $opt_W, $opt_h, $opt_V, $opt_i); 36my ($opt_c, $opt_f, $opt_w, $opt_C, $opt_W, $opt_h, $opt_V, $opt_i);
37my ($result, $message, $age, $size, $st); 37my ($result, $message, $age, $size, $st, $perfdata);
38 38
39$PROGNAME="check_file_age"; 39$PROGNAME="check_file_age";
40 40
@@ -92,6 +92,7 @@ unless (-e $opt_f) {
92$st = File::stat::stat($opt_f); 92$st = File::stat::stat($opt_f);
93$age = time - $st->mtime; 93$age = time - $st->mtime;
94$size = $st->size; 94$size = $st->size;
95$perfdata = "age=${age}s;${opt_w};${opt_c} size=${size}B;${opt_W};${opt_C};0";
95 96
96 97
97$result = 'OK'; 98$result = 'OK';
@@ -103,7 +104,7 @@ elsif (($opt_w and $age > $opt_w) or ($opt_W and $size < $opt_W)) {
103 $result = 'WARNING'; 104 $result = 'WARNING';
104} 105}
105 106
106print "FILE_AGE $result: $opt_f is $age seconds old and $size bytes\n"; 107print "FILE_AGE $result: $opt_f is $age seconds old and $size bytes | $perfdata\n";
107exit $ERRORS{$result}; 108exit $ERRORS{$result};
108 109
109sub print_usage () { 110sub print_usage () {