NQL logical operators
Operator
Definition
Examples
in
Is a metric value in the list
where name in ["ABC", "def"]
where count in [10, 20, 30]
!in
Is a metric value not in the list
where name !in ["ABC", "def"]
where count !in [10, 20, 30]
contains
Is a string contained in an array of strings
where monitor.tags contains 'User'
!contains
Is a string not contained in an array of strings
where monitor.tags !contains 'User'
Last updated