I'm trying to filter the widget mentioned in the subject by several parameters. I've successfully done this so far by using:
Nodes.CustomProperties.Global_Department = 'Network' OR Nodes.CustomProperties.Global_Department = 'Generating' AND Status=2
However, the last parameter I want to use is failing. I want to hit on certain keywords in the InterfaceName under the Interface Properties. To do this I attempted to use:
AND InterfaceName LIKE '%crit%'
That is not working as it still shows all downed interfaces and not the critical ones that are flagged in the InterfaceName property. What am I doing wrong?