lookupContains operator
The lookupContains operator checks whether a key exists in a lookup table and returns a boolean value.
You can use it as a condition inside a where or if expression in FuseQL.
Syntax
... | where lookupContains(<lookupTableName>, <event-field>=<lookup-field>) | ...
fuseql
-
<lookupTableName>— Name of the lookup table in Kloudfuse. -
<event-field>— A log field to check against. This can be a facet, a label, or a field extracted using theparseoperator. -
<lookup-field>— A field in the lookup table used for matching.