Hello,

i need to filter all my devices by the amount of their sensors. Specially in this case i need all devices with only one Ping Sensor. Is something like this possiple?

Thank you in advance for your help!


Article Comments

Not natively, but probably with PrtgAPI (PowerShell knowledge required):

Connect to the PRTG server first:

  1. Connect-PRTGServer
  2. Then, use the following to retrieve all devices with a sensor count equal or lower than 1:
    Get-Device | Where-Object {$_.TotalSensors -le 1}

Kind regards,
Stephan Linke, Tech Support Team


Jun, 2018 - Permalink