I'm trying to get XML Custom EXE sensor to work in PRTG.
I want a sensor to grab data from a webpage and display the results in PRTG. We have created an EXE in c# that authenticates the webpage and grabs the data and returns it in XML, memory only, no file written. However I keep getting the error:
XML: The returned XML does not match the expected schema. (code: PE233) |
Our output:
<prtg> <result> <channel>Type</channel> <value>Service</value> </result> <result> <channel>Unit</channel> <value>PH</value> </result> <result> <channel>Label</channel> <value></value> </result> <result> <channel>Slot</channel> <value>A</value> </result> <result> <channel>HW Version</channel> <value>3.62</value> </result> <result> <channel>Serial Number</channel> <value>030362002110</value> </result> <result> <channel>Downlink RF Power (dBm)</channel> <value>-37.1</value> </result> <result> <channel>Alarm Count</channel> <value>0</value> </result> <result> <channel>Alarms</channel> <value>None</value> </result> <result> <channel>Max input power (dBm)</channel> <value>4</value> </result> <result> <channel>Module State</channel> <value>Open</value> </result> <result> <channel>Uplink Gain (dB)</channel> <value>1</value> </result> <result> <channel>Downlink Gain (dB)</channel> <value>-5</value> </result> </prtg>
Any ideas what we are missing in this output?
Thanks for the assistance.
Add comment