diff --git a/modules/monitoring/library/Monitoring/Plugin/PerfdataSet.php b/modules/monitoring/library/Monitoring/Plugin/PerfdataSet.php index 269107c82..d503bc19f 100644 --- a/modules/monitoring/library/Monitoring/Plugin/PerfdataSet.php +++ b/modules/monitoring/library/Monitoring/Plugin/PerfdataSet.php @@ -83,7 +83,7 @@ class PerfdataSet implements IteratorAggregate $label = trim($this->readLabel()); $value = trim($this->readUntil(' ')); - if ($label && $value) { + if ($label) { $this->perfdata[] = new Perfdata($label, $value); } }