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

Attention: This article is a record of a conversation with the Paessler support team. The information in this conversation is not updated to preserve the historical record. As a result, some of the information or recommendations in this conversation might be out of date.

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