We would like to use PRTG for asset inventory control. We would like to perform scheduled auto discovery and use the results to see when new devices are on the network. Is there a way to auto discover devices, but not create any sensors or report down status?


Article Comments

The best way to do this would be to create a device template without any sensors then have the Auto-Discover group use that template to find devices. Since the template will only create sensors based on the sensors that were on the device when the template was made, if you use a blank template, the Auto-Discovery should not create sensors.

Create Template

Auto-Discovery


May, 2013 - Permalink

Thanks. When I try to create a template with no sensors, I get an error message.

Error: Device contains no sensors

Am I missing a setting somewhere?


May, 2013 - Permalink

Phil,

My mistake there, I forgot that it isn't natively possible to create a template without a sensor but what you might do instead is to create a template with a ping sensor then go into the device template and take out all of the code for the sensor creation. This way the template will only ping the device, pull the name, create the device but it will not have any sensors attached to it.

The code for this template is below and you should find the device templates under your program files\PRTG Network Monitor\devicetemplates folder.

<?xml version="1.0" encoding="UTF-8"?> <devicetemplate id="custom" name="TestInventory" priority="1"> <check id="ping" meta="ping"/> </devicetemplate>


May, 2013 - Permalink