Dear user
SSH sensors log into the device using a secure shell connection. Then the sensor transmits one or more commands and reads the output, which is then further processed by the sensor to extract the needed data.
SNMP sensors read a value directly, using the simple network management protocol. This requires an SNMP daemon running on the computer which you want to monitor.
PRTG does not come with an SSH CPU sensor, but you could use the SSH script sensor to write your own SSH CPU sensor. This command
uptime
gives you three numbers, which are CPU load averages for different time spans. The first value usually gives you the one-minute-average. A custom SSH CPU sensor could use that command, followed by other commands to cut out only the first numeric value and create a return output which conforms to the PRTG custom sensor API (which is returncode:value:message.)
The actual SSH script has to be located on the monitored machine, in the /var/prtg/scripts path.
Add comment