Very similar to the "NPM Alert that triggers when an SAM template is NOT assigned to a node" but with different SQL
Raw SQL:
SELECT Nodes.NodeID AS NetObjectID, Nodes.Caption AS Name
FROM Nodes /*SplitMarker*/where
Nodes.NodeID not in
(select nodeid from CustomPollerAssignment LEFT OUTER JOIN CustomPollers ON (CustomPollerAssignment.CustomPollerID = CustomPollers.CustomPollerID)
where (CustomPollers.UniqueName = 'diskFailedCount'))
and
(nodes.vendor='Network Appliance Corporation')
The main difference here is you need to :
- Change the "CustomPollers.UniqueName" to match your poller
- Change the "nodes.vendor" qualifer to match your node list.