Currently we are using our own custom software (Matlab, Labview, Python) to monitor various physical sensors and measurement equipment that only have a serial port.
For each serial connected device we use a MOXA serial server (N5110A) which 'converts' the serial port into ethernet and allows us to query and read data from these devices by sending and receiving simple strings via TCP.
What would be the optimal method for writing a custom sensor with PRTG that we could implement and move all our data monitoring into PRTG?
The Sensor would need to: - open and close TCP connections to custom IPs and ports - send ASCII strings with custom termination characters - have some delay handling (for slow equipment) - read custom lenghts of ASCII from the TCP port - and parse them using standard regular expressions - validate the parsed data and store it in the monitoring database
Add comment