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