diff options
-rwxr-xr-x | plugins-scripts/check_uptime.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-scripts/check_uptime.pl b/plugins-scripts/check_uptime.pl index 1f844ff..9679a7c 100755 --- a/plugins-scripts/check_uptime.pl +++ b/plugins-scripts/check_uptime.pl | |||
@@ -124,7 +124,7 @@ my $out_of_bounds_text = ""; | |||
124 | if ( $uptime_seconds > $upper_crit_threshold ) { | 124 | if ( $uptime_seconds > $upper_crit_threshold ) { |
125 | $state_str = "CRITICAL"; | 125 | $state_str = "CRITICAL"; |
126 | $out_of_bounds_text = "upper crit"; | 126 | $out_of_bounds_text = "upper crit"; |
127 | } elsif ( $uptime_seconds < $lower_crit_threshold ) { | 127 | } elsif ( $uptime_seconds < $lower_crit_threshold ) { |
128 | $state_str = "CRITICAL"; | 128 | $state_str = "CRITICAL"; |
129 | $out_of_bounds_text = "lower crit"; | 129 | $out_of_bounds_text = "lower crit"; |
130 | } elsif ( $uptime_seconds > $upper_warn_threshold ) { | 130 | } elsif ( $uptime_seconds > $upper_warn_threshold ) { |