I have a Powershell script that is doing some free space calculation. In PRTG is shows the last channel value as 0%, min and max also at 0%.
I have enabled the debugging on the sensor and have it output being written to disk. Here is the output
<result>
<channel>Space Remaining (%)</channel>
<unit>Percent</unit>
<value>23.96</value>
</result>
If I changed the script to not multiple the value by 100 (not sure if PRTG does that since its unit is Percent) I get the output below, but the value is still 0% in PRTG.
<result>
<channel>Space Remaining (%)</channel>
<unit>Percent</unit>
<value>0.24</value>
</result>
Add comment