facet operator

Learn how to use the facet operator to return a table for each specified column.

Returns a set of tables, one for each column specified in the facet clause. Each table contains the list of values taken by its column. An additional table can be created by using the with clause. Facet result tables can’t be renamed or referenced by any additional operators.

Syntax

T | facet by ColumnName [, ColumnName2, …] [with ( filterPipe )]

Parameters

NameTypeRequiredDescription
ColumnNamestring✔️The column name, or list of column names, to be summarized.
filterPipestringA query expression applied to the input table.

Returns

Multiple tables: one for the with clause, and one for each column.

Example

StormEvents
| where State startswith "A" and EventType has "Heavy"
| facet by State, EventType
    with 
    (
    where StartTime between(datetime(2007-01-04) .. 7d) 
    | project State, StartTime, Source, EpisodeId, EventType
    | take 5
    )

The following is the table generated by the with clause.

StateStartTimeSourceEpisodeIdEventType
ALASKA2007-01-04 12:00:00.0000000COOP Observer2192Heavy Snow
ALASKA2007-01-04 15:00:00.0000000Trained Spotter2192Heavy Snow
ALASKA2007-01-04 15:00:00.0000000Trained Spotter2192Heavy Snow
ALASKA2007-01-04 15:00:00.0000000Trained Spotter2192Heavy Snow
ALASKA2007-01-06 18:00:00.0000000COOP Observer2193Heavy Snow

The following table is the State facet output table.

Statecount_State
ALABAMA19
ARIZONA33
ARKANSAS1
AMERICAN SAMOA1
ALASKA58

The following table is the EventType facet output table.

EventTypecount_EventType
Heavy Rain34
Heavy Snow78