I know this is a long shot, but I have the need to assign UnDP pollers in a more automatic fashion. I thought I had it down when I added a row to the CustomPollerAssignment table and while it shows up in UnDP, on the web console, and its LastStatus Change is updating, there no statistics are showing up in CustomPollerStatistics_Detail.
Here's the INSERT statement I wrote. Has anyone gotten into this before and had some success?
INSERT INTO CustomPollerAssignment( CustomPollerAssignmentID ,AssignmentName ,CustomPollerID ,NodeID ,InterfaceID ,Status)VALUES( newid() ,'tcpConnLocalPort on L1CORPESX01' -- mimicked the existing format ,'C35D7404-3A8B-4568-A944-49D54B71ED59' -- the GUID of the poller I want to use (tcpConnLocalPort) ,18 -- nodeID of the node I want to point it to ,0 -- 0 because it's a node poller ,1 -- 1 because that's what the others were set to);