Quantcast
Channel: THWACK: Unanswered Discussions - Network Performance Monitor
Viewing all articles
Browse latest Browse all 11013

FYI: NPM Alert that triggers when an Custom Poller is NOT assigned to a node

$
0
0

Very similar to the "NPM Alert that triggers when an SAM template is NOT assigned to a node" but with different SQL

 

ScreenClip [1].png

 

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 :

  1. Change the "CustomPollers.UniqueName" to match your poller
  2. Change the "nodes.vendor" qualifer to match your node list.

Viewing all articles
Browse latest Browse all 11013

Trending Articles