Isnull

isnull

Returns true if the argument is null, otherwise false.

Spec

isnull(arg0)

Parameters

arg0 - The value to check for null.

Return Value

A boolean: true if arg0 is null, false otherwise.

Example

datatable(val:int64)[1, 3]
| extend is_missing = isnull(val)
valis_missing
1false
3false

Filter to null rows:

events
| where isnull(payload)