Hello, good morning, I have a question .. It is possible to get a report of how many sensors and what type are installed in the prtg console, for example snmp type sensors I have 100, wmi type sensors I have 45 etc. It's possible?
How many sensors do I have?
Modified on 2025-06-10 15:17:13 +0200
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.
Disclaimer:
The information in the Paessler Knowledge Base comes without warranty of any kind. Use at your own risk. Before applying any instructions please exercise proper system administrator housekeeping. You must make sure that a proper backup of all your data is available.
The information in the Paessler Knowledge Base comes without warranty of any kind. Use at your own risk. Before applying any instructions please exercise proper system administrator housekeeping. You must make sure that a proper backup of all your data is available.
This can be done using PRTGapi and PowerShell:
Get-Sensor | Select Id,Name,Type | Group-Object -Property TypeThe output will look something like this:PS C:\Users\steph> Get-Sensor | Select Id,Name,Type | Group-Object -Property Type Count Name Group ----- ---- ----- 1 Sensor (clusterstate) {@{Id=31; Name=Cluster-Zustand; Type=Sensor (clusterstate)}} 2 Sensor (systemstate) {@{Id=1001; Name=Systemzustand; Type=Sensor (systemstate)}, @{Id=18484; Name=Systemzustand; Type=Sensor (systemstate)}} 2 Sensor (corestate) {@{Id=1002; Name=Serverzustand; Type=Sensor (corestate)}, @{Id=18485; Name=Serverzustand; Type=Sensor (corestate)}}With kind regards,
Stephan Linke, Technical Support Team
Dec, 2020 - Permalink