Can we export a list of all devices within NPM listed with which pollers are being used for each?
I'd be interested in knowing this as well.
Yes, you can directly get this from your webconsole:
1. Goto Settings -> Managed Nodes
2. And on the left hand side Group by filter -> Select 'Polling Engine' , just double click on it and it will list all nodes associated to that poller
If you want to extract this from DB let me know
Using Report Writer you can create a simple report and extract the information required using export function:
New -> Select 'Current Status of Nodes,Volumes,etc' -> OK
Select just 2 fields
1. Network Nodes -> Node Details -> Node Name
2. Polling Engines -> Server Details -> Server Name
Sorry, not the server pooler, but the actual uDP/MIB that is attached to each node.
are you talking about UnDP (custom pollers created by you) or the OID's used by Solarwinds to get the information on devices ? When you say UDP/MIB looks like you are interested in looking at the OID's used by Solarwinds to fetch the details.
When you go through the process of adding a node, you can add custom pollers for like cisco devices to check temp, or bgp neighbors, I need to see which ones are assigned to each device?
1. Login into your primary solarwinds poller
2. All Programs -> Solarwinds Orion -> Network Performance Monitor -> Universal Device Poller
3. Once you open Universal Device Poller on the left hand side at the bottom you would see 'all defined pollers' in your current environment
4. Expand one of the folders go to the last level of it click on the custom poller , you would see the details of the OID that is being used and you would as well see the list of devices it has been deployed on at the bottom of the screen
If you want to check the same on DB the details are distributed on 3 separate tables Nodes, CustomPollers and CustomPollerAssignment
Just in case you wanted the SQL part:
SELECT N.CAPTION AS 'DEVICE' ,P.UNIQUENAME AS 'UNIVERSAL DEVICE POLLER' ,P.OID ,P.MIBFROM CUSTOMPOLLERS PJOIN CUSTOMPOLLERASSIGNMENT A ON A.CUSTOMPOLLERID = P.CUSTOMPOLLERIDJOIN NODES N ON N.NODEID = A.NODEIDORDER BY N.CAPTION, P.UNIQUENAME
-ZackM
Loop1 Systems: SolarWinds Training and Professional Services
I am seeking is also viable.