There are several Linux machines running Ubuntu on the network. Can PRTG ingest XML responses with the example format below? I have been reading about the Mini Probes but find it confusing. Also, on the Python Script Advanced Sensor page it says:
"The Python Script Advanced sensor executes a Python script on the computer running the local or remote probe. This option is provided as part of the PRTG Application Programming Interface (API). The return value of this sensor must be valid JSON or XML."
I found this on the Knowledge Base, https://kb.paessler.com/en/topic/60839-how-can-i-monitor-linux-systems-with-a-prtg-mini-probe, but it appears that is will only return a set of standard sensors.
-------------------------------------------------------------------------------------------------------------- --- XML Format -------------------------------------------------------------------------------------------------------------- <?xml version="1.0" encoding="utf-8" ?> <xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="StatusOfHealth"> <xs:complexType> <xs:sequence> <xs:element name="Version" type="xs:string"> </xs:element> <xs:element name="SequenceNumber" type="xs:unsignedInt" /> <xs:element name="PreviousReportTime" type="xs:dateTime" /> <xs:element name="CurrentReportTime" type="xs:dateTime" /> </xs:sequence> </xs:complexType> </xs:element> <xs:simpleType name="HealthStatusType"> <xs:restriction base="xs:string"> <xs:enumeration value="FullyOperational" /> <xs:enumeration value="Degraded" /> <xs:enumeration value="Failure" /> </xs:restriction> </xs:simpleType> </xs:schema>
Add comment