Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
13 lines (11 loc) · 430 Bytes

count-all-logs-collected-over-the-last-hour-per-type.md

File metadata and controls

13 lines (11 loc) · 430 Bytes

Count all logs collected over the last hour, per type

#search #count #barchart

The following example search everything reported in the last hour and counts the records of each table using the system column $table. The results are displayed in a bar chart.

search *
| where TimeGenerated > ago(1h) 
| summarize CountOfRecords = count() by $table
| render barchart