1// Baseline: concurrent alerts on same entity
2SecurityAlert
3| where TimeGenerated > ago(30d)
4| where Entities has '<UPN>'
5| summarize AlertCount=count(),
6 Severities=make_set(AlertSeverity)
7 by AlertName, ProductName
8| order by AlertCount desc