I'm trying to setup a large PRTG installation, but I have problems automating it. The following article specifies that I should use SNMP if possible. ( https://kb.paessler.com/en/topic/2733-how-can-i-speed-up-prtgespecially-for-large-installations )
How do I add SNMP Service using HTTP API or PRTGAPI (lordmilko)?
This is how I do SNMP Uptime and SNMP Disk:
- SNMP Uptime $Parameters = Get-Device -Probe $Probe -Host $HostName | New-SensorParameters -RawType snmpuptime Get-Device -Probe $Probe -Host $HostName | Add-Sensor -Parameters $Parameters
- SNMP Disk $Parameters = Get-Device -Probe $Probe -Host $HostName | New-SensorParameters -RawType snmpdiskfree Get-Device -Probe $Probe -Host $HostName | Add-Sensor -Parameters $Parameters
Add comment