Complete the code to select all records from the table named 'Events'.
[1]In KQL, to query all records from a table, you just write the table name.
Complete the code to filter records where the 'Status' column equals 'Error'.
Events | where Status [1] 'Error'
In KQL, '==' is used to check equality in filters.
Fix the error in the code to summarize the count of records by 'Category'.
Events | summarize count() by [1]The 'by' clause should use the column name to group by, here 'Category'.
Fill both blanks to filter records where 'Duration' is greater than 5 and select only 'Name' and 'Duration' columns.
Events | where Duration [1] 5 | project [2]
Use '>' to filter durations greater than 5, and 'project' to select columns by listing them separated by commas.
Fill all three blanks to count records grouped by 'Type' and filter groups having count greater than 10.
Events | summarize [1] = count() by [2] | where [3] > 10
Assign the count to 'TotalCount', group by 'Type', then filter where 'TotalCount' is greater than 10.