Query Details

Analytics Rules Runby Times

Query

SecurityAlert
| where ProviderName contains "ASI"
| summarize count() by DisplayName

Explanation

This query is looking at a dataset called SecurityAlert and filtering it to only include records where the ProviderName contains the letters "ASI". It then groups the remaining records by the DisplayName field and counts how many records are in each group.