Use true given window range, not twice

This commit is contained in:
CPbN 2019-03-21 13:11:22 +01:00
parent 749eef09ff
commit 6c97d557c1

View File

@ -80,8 +80,8 @@ sub check_overload {
my $overflow = ($old_uptime + $diff_time) % 4294967296;
my $division = ($old_uptime + $diff_time) / 4294967296;
if ($division >= 1 &&
$overflow >= ($options{timeticks} - $self->{option_results}->{reboot_window}) &&
$overflow <= ($options{timeticks} + $self->{option_results}->{reboot_window})) {
$overflow >= ($options{timeticks} - ($self->{option_results}->{reboot_window} / 2)) &&
$overflow <= ($options{timeticks} + ($self->{option_results}->{reboot_window} / 2))) {
$self->{new_datas}->{overload}++;
} else {
$self->{new_datas}->{overload} = 0;