NQL論理演算子

演算子
定義

in

リスト内にメトリック値がある

where name in ["ABC", "def"]

where count in [10, 20, 30]

!in

リスト内にメトリック値がない

where name !in ["ABC", "def"]

where count !in [10, 20, 30]

contains

文字列が文字列の配列に含まれている

where monitor.tags contains 'User'

!contains

文字列が文字列の配列に含まれていない

where monitor.tags !contains 'User'

Last updated