Hello,

I would like to know how i can trought the xml Output show a ° as custom Unit.

My actuall XML Output is:

<?xml version="1.0" encoding="Windows-1252" ?> <prtg> <result> <channel>Temperature</channel> <unit>°C</unit> <float>1</float> <showChart>1</showChart> <showTable>1</showTable> <value>3.5</value> </result> </prtg>

In PRTG it show mit the unit øC.


Article Comments

Hi Adrian,

That would be:

<prtg>
	<result>
		<channel>Temperature</channel>
                <Unit>Custom</Unit>
                <CustomUnit>°C</CustomUnit>
		<float>1</float>
		<showChart>1</showChart>
		<showTable>1</showTable>
		<value>3.5</value>
	</result>
</prtg>

Mar, 2015 - Permalink