Add check throttling in runcheckdir
check ping -c 1 208.113.178.19
+every 600
on change mail chip
}
-my ($checkcommand, %on);
+my ($checkcommand, $every, %on);
$on{success} = [];
$on{failure} = [];
$on{change} = [];
} else {
print "Unknown event in 'on', $dir/check line $.\n";
}
+ } elsif ($command eq 'every') {
+ $every = $words[0];
} else {
print "Unknown command '$command', $dir/check line $.\n";
}
open STATUS, "$dir/checkstatus";
chomp(my $oldstatus = <STATUS>);
+my $oldtime = (stat(STATUS))[9];
close STATUS;
+my $td = time() - $oldtime;
+if ($td < $every) {
+ # Not time to recheck yet
+ #print "Not rechecking; ", $every - $td, " seconds to go.\n";
+ exit $oldstatus;
+}
+
open CHECK, '-|', $checkcommand;
$status = <CHECK>;
$details = join('', <CHECK>);
close CHECK;
my $exitstatus = $? >> 8;
-my $command;
if ($exitstatus == 0 && $oldstatus != 0) {
- do_command($command) foreach $command @{$on{success}};
+ do_command($_) foreach @{$on{success}};
}
if ($exitstatus != 0 && $oldstatus == 0) {
- do_command($command) foreach $command @{$on{failure}};
+ do_command($_) foreach @{$on{failure}};
}
if ($exitstatus != $oldstatus) {
- do_command($command) foreach $command @{$on{change}};
+ do_command($_) foreach @{$on{change}};
}
open STATUS, ">$dir/checkstatus";
print STATUS "$status\n";
print STATUS "$details\n";
close STATUS;
+
+exit $exitstatus;