I'm having a heck of a time getting the Filter Nodes SQL to work. I want to show in my global nodes only network devices that are down. If I use this :
Node.Vendor = 'Cisco' OR Node.Vendor = 'Juniper*' OR Node.Vendor = 'NetScaler'
It shows only network devices but also ones that are unmanaged.
I tried this :
Node.Vendor = 'Cisco' OR Node.Vendor = 'Juniper*' OR Node.Vendor = 'NetScaler' AND Status=2
And this shows nothing. Do I need to nest this somehow?
BB