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