aboutsummaryrefslogtreecommitdiff
path: root/plugins-scripts/check_file_age.pl
diff options
context:
space:
mode:
authorGravatar Jonas Genannt <jonas@brachium-system.net> 2014-09-23 12:51:55 +0200
committerGravatar Holger Weiss <holger@zedat.fu-berlin.de> 2014-10-06 20:16:00 +0200
commit3b02d7fafba6ef35cac9af47ce046f9c7a6fc510 (patch)
tree6ef6f29b759aa1bccd5b982a68a9963b37b072a4 /plugins-scripts/check_file_age.pl
parent849eb5725c28acabab5d08266a4ee8b905c81a0c (diff)
downloadmonitoring-plugins-3b02d7fafba6ef35cac9af47ce046f9c7a6fc510.tar.gz
check_file_age: Provide performance data
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 453e0f55..4415fdf4 100755
--- a/plugins-scripts/check_file_age.pl
+++ b/plugins-scripts/check_file_age.pl
@@ -34,7 +34,7 @@ sub print_help ();
sub print_usage ();
my ($opt_c, $opt_f, $opt_w, $opt_C, $opt_W, $opt_h, $opt_V, $opt_i);
-my ($result, $message, $age, $size, $st);
+my ($result, $message, $age, $size, $st, $perfdata);
$PROGNAME="check_file_age";
@@ -92,6 +92,7 @@ unless (-e $opt_f) {
$st = File::stat::stat($opt_f);
$age = time - $st->mtime;
$size = $st->size;
+$perfdata = "age=${age}s;${opt_w};${opt_c} size=${size}B;${opt_W};${opt_C};0";
$result = 'OK';
@@ -103,7 +104,7 @@ elsif (($opt_w and $age > $opt_w) or ($opt_W and $size < $opt_W)) {
$result = 'WARNING';
}
-print "FILE_AGE $result: $opt_f is $age seconds old and $size bytes\n";
+print "FILE_AGE $result: $opt_f is $age seconds old and $size bytes | $perfdata\n";
exit $ERRORS{$result};
sub print_usage () {