Good Morning NPM Community
We have a 'Main Dashboard' view for our network and one of the resources we use is the Down Interface Resource. We have a few projects in some remote locations taking place and while work is being done occasionally a port on a switch will go up and down. I don't want to stop all monitoring or alerting for these nodes or the interfaces but I do want to stop the interfaces from displaying in the down interface resource while the work is taking place. If I am working with one technician in one location on one switch I can use the following SQL filter to stop the nodes from displaying in the 'Down interfaces Resource'
Community='{Community-String}' AND interfaces.NodeID <> 11111
The above SQL works well as long as I am just woking with one node.
However if I start working with a second or third engineer and they are working on 2 different nodes and I edit the filter above to look like this
Community='{Community-String}' AND interfaces.NodeID <> 11111 OR interfaces.NodeID <> 22222 OR interfaces.NodeID <> 33333
I basically stop the 'Down Interface Resource' view from even working correctly. I will try to write out what I am trying to accomplish with the SQL statement above:...
Show all down interfaces on nodes with a Community='{Community-String} And the node ID is not equal to 11111 OR node ID is not equal to 22222 OR Node ID is not equal to 33333
Is this not possible or do I have the SQL statement setup incorrectly?