Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 275 Bytes

get-the-latest-record-per-category.md

File metadata and controls

11 lines (9 loc) · 275 Bytes

Get the latest record per category

#arg_max

Get the latest AzureDiagnostics' record in each unique category

AzureDiagnostics
| where TimeGenerated > ago(1d) 
| summarize arg_max(TimeGenerated, *) by Category