I created several Universal Device Pollers to gather certain custom SNMP information on my switches. I am having difficulty finding these UnDP results in the web-based Report Writer; How do I add these columns to a report?
NPM 12.0.1, NCM 7.5.1
Hey telecom116, I don't spend much time working in the web-based report writer's field list but if you wanted to step into SWQL, you could use something like the query below:
SELECT n.Caption, cp.UniqueName, cps.StatusFROM Orion.Nodes nJOIN Orion.NPM.CustomPollerAssignmentOnNode cpan ON n.NodeID = cpan.NodeIDJOIN Orion.NPM.CustomPollers cp ON cpan.CustomPollerID = cp.CustomPollerIDJOIN Orion.NPM.CustomPollerStatus cps ON cpan.CustomPollerAssignmentID = cps.CustomPollerAssignmentIDORDER BY n.Caption, cp.UniqueName