diff options
author | Adrien nayrat | 2014-11-13 13:02:39 +0000 |
---|---|---|
committer | Christoph Berg | 2016-05-26 17:37:26 +0000 |
commit | c16c27e8c9bf8b5a8fea6d2c3122806bb0e7bda1 (patch) | |
tree | d9aa3728d77df7724b1da8505e3be9a7a99baeaa | |
parent | 87756a5ac90b2887cf701eb7a3969b2e273b2767 (diff) |
Correct extra space in perfdata
The extra space result in two spaces between the metrics and its incorrectly parse by centreon.
-rwxr-xr-x | check_postgres.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/check_postgres.pl b/check_postgres.pl index 56ff7bfa1..527ab3802 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -5121,7 +5121,7 @@ sub check_hot_standby_delay { {one => $rep_delta, two => $rec_delta}); if (defined $rep_delta) { - $db->{perf} = sprintf ' %s=%s;%s;%s ', + $db->{perf} = sprintf ' %s=%s;%s;%s', perfname(msg('hs-replay-delay')), $rep_delta, $warning, $critical; } if (defined $rec_delta) { |