Can't find a report of Nodes with no System Application Monitors assigned. Not even any that I can fudge/modify. UGH.
Here is what I use for similar report:
SELECT Nodes.CaptionFROM APM_Application RIGHT OUTER JOIN Nodes ON APM_Application.NodeID = Nodes.NodeIDWHERE (Nodes.NetworkCategory = 'Servers') AND (APM_Application.Name IS NULL)ORDER BY Nodes.Caption
This works for me. The Nodes.NetworkCategory is a custom property we assign to servers. You may or may not have the same criteria where you can filter out non-server nodes.
Hope this helps some...
Awesome. A tweak here and there and it snapped right in. I was looking in all the wrong places and joining backwards.
Thanks again!
You are most welcome - thwack is a great resource.
Hi Rob,
You may find the following helpful as well.
In your example this will only return nodes with no apps assigned at all, but what if you need to know which nodes do not have specific application assigned? This will not work if some other applications are assigned to node already?
The below solution is what I use for compliance reporting on unassigned applications:
SELECT * FROM NODES WHERE APPLICATION_TEMPLATE <> BLA_BLA_BLA (for compliance reasons)
Hope this helps,
Alex