Wildcards
The wildcard character in SWQL syntax is: %.
Example: Node.Caption Like 'AX3%'
Filtering by Custom Property
The property syntax to filter by custom property is:
dataType.CustomProperties.propertyName
Example filter to only show nodes with the custom property City that matches
Atlanta:
Node.CustomProperties.City = 'Atlanta'
Filtering by Built-in Properties
Many properties have the same name between data types. To prevent ambiguity,
SolarWinds UDT prefixes the property names with the data type.
Examples
Example filter to show data from Cisco devices:
Node.Vendor = 'Cisco'
Example filter to show data from Windows Server 2003-2008 applications:
Application.Name = 'Windows Server 2003-2008'
Example filter to show data from devices beginning with "AX3":
Node.Caption Like 'AX3%'
Example filter to show data from Process Monitor - SNMP type component monitors:
Monitor.ComponentType = 8
Filtering by Status
To filter by the status property, you must know the valid status levels.
Level Status
0 Unknown
100
SWQL Syntax