From d856264b62c3c70dd50c2246717bd130be2f34b3 Mon Sep 17 00:00:00 2001 From: garnier-quentin Date: Wed, 7 May 2014 00:29:36 +0200 Subject: [PATCH] Refs #5514 --- centreon/plugins/output.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/centreon/plugins/output.pm b/centreon/plugins/output.pm index f2a7a0d03..69b3ef2e9 100644 --- a/centreon/plugins/output.pm +++ b/centreon/plugins/output.pm @@ -393,7 +393,7 @@ sub output_txt { next if (defined($self->{option_results}->{filter_perfdata}) && $_->{label} !~ /$self->{option_results}->{filter_perfdata}/); $self->range_perfdata(ranges => [\$perf->{warning}, \$perf->{critical}]); - print " '" . $perf->{label} . "'=" . $perf->{value} . $perf->{unit} . ";" . $perf->{warning} . ";" . $perf->{critical} . ";" . $perf->{min} . ";" . $_->{max}; + print " '" . $perf->{label} . "'=" . $perf->{value} . $perf->{unit} . ";" . $perf->{warning} . ";" . $perf->{critical} . ";" . $perf->{min} . ";" . $perf->{max}; } print "\n"; }