diff options
author | Bernd Arnold <wopfel@gmail.com> | 2018-06-03 14:42:34 (GMT) |
---|---|---|
committer | Bernd Arnold <wopfel@gmail.com> | 2018-06-03 14:42:34 (GMT) |
commit | d5fbf8ae93c511e9bb9e0ee4304625d4b4023622 (patch) | |
tree | 7dae012d2984fc22d9c69ab55f8ba5b4aa6fcb02 | |
parent | 44816b4979cdad1698179e749726b8f45e5587d2 (diff) | |
download | monitoring-plugins-d5fbf8ae93c511e9bb9e0ee4304625d4b4023622.tar.gz |
Added suffix "s" for seconds in perfdata output
-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 09600df..8c1f3d2 100755 --- a/plugins-scripts/check_uptime.pl +++ b/plugins-scripts/check_uptime.pl | |||
@@ -137,7 +137,7 @@ if ( $opt_s ) { | |||
137 | $state = $ERRORS{$state_str}; | 137 | $state = $ERRORS{$state_str}; |
138 | 138 | ||
139 | # Perfdata support | 139 | # Perfdata support |
140 | print "$msg|uptime=$uptime_seconds;$opt_w;$opt_c;0\n"; | 140 | print "$msg|uptime=${uptime_seconds}s;$opt_w;$opt_c;0\n"; |
141 | exit $state; | 141 | exit $state; |
142 | 142 | ||
143 | 143 | ||