My question is where can i get the full list of filter commands and definitions to use in my view?
example:
Status<>2 <--
Vendor = 'Cisco' <--
etc...
------------------------------------------------------------------------------
The following are valid status levels:
0 = Unknown (current up/down status of the node is unknown)
1 = Up (The node is responding to PINGs)
2 = Down (The node is not responding)
3 = Warning (The node may be responding, but the connection from the server to the Node is dropping packets)
Only show Cisco devices: Vendor = 'Cisco'
Only show devices in Atlanta. (using a custom property named City):
City = 'Atlanta'
Only show devices beginning with "AX3-": Caption Like 'AX3-*'
Only show Nortel devices that are Down:
Vendor Like 'Nortel*' AND Status=2
------------------------------------------------------------------------------