kqlazure-data-explorerkusto-explorer

How to filter the records in Kusto


I am trying to get the event names in each department by Id. I tried with filters and othe but unable to get it. Any inputs?

enter image description here


Solution

  • you could try using the make_set() aggregation function.

    for example:

    T
    | summarize make_set(Event) by DeptId, DeptName