diff options
Diffstat (limited to 'lib/Nagios/Plugin/Performance.pm')
-rw-r--r-- | lib/Nagios/Plugin/Performance.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Nagios/Plugin/Performance.pm b/lib/Nagios/Plugin/Performance.pm index 6e4cd03..fc1c0bc 100644 --- a/lib/Nagios/Plugin/Performance.pm +++ b/lib/Nagios/Plugin/Performance.pm | |||
@@ -22,7 +22,7 @@ struct "Nagios::Plugin::Performance" => { | |||
22 | 22 | ||
23 | sub perfoutput { | 23 | sub perfoutput { |
24 | my $self = shift; | 24 | my $self = shift; |
25 | my $output = $self->label."=".$self->value.$self->uom.";".$self->threshold->warning.";".$self->threshold->critical; | 25 | my $output = $self->label."=".$self->value. ($self->uom || "") .";".$self->threshold->warning.";".$self->threshold->critical; |
26 | return $output; | 26 | return $output; |
27 | } | 27 | } |
28 | 28 | ||