ExploitGuardASRStats (1)
Description
Get stats on ASR audit events - count events and machines per rule.
Query · kql
// Get stats on ASR blocks - count events and machines per rule DeviceEvents | where ActionType startswith "Asr" and ActionType endswith "Blocked" // Count total stats - count events and machines per rule | summarize EventCount=count(), MachinesCount=dcount(DeviceId) by ActionType