mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
Improves performance data output by using lower case only
This commit is contained in:
parent
5b778b1847
commit
6b830bd980
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ function New-IcingaPerformanceDataEntry()
|
||||||
|
|
||||||
return ([string]::Format(
|
return ([string]::Format(
|
||||||
"'{0}'={1}{2};{3};{4}{5}{6} ",
|
"'{0}'={1}{2};{3};{4}{5}{6} ",
|
||||||
$LabelName,
|
$LabelName.ToLower(),
|
||||||
(Format-IcingaPerfDataValue $PerfValue),
|
(Format-IcingaPerfDataValue $PerfValue),
|
||||||
$PerfDataObject.unit,
|
$PerfDataObject.unit,
|
||||||
(Format-IcingaPerfDataValue $PerfDataObject.warning),
|
(Format-IcingaPerfDataValue $PerfDataObject.warning),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue