Most Triggered Incidents
Description
The results of this query provide insight in the top 10 incidents that have triggered in your selected timeframe, this can give indications on which incidents should be addressed to limit potential false positives.
Query · kql
// Timeframe to collect incident statistics let timeframe = 7d; AlertInfo | where Timestamp > ago(timeframe) // Collect the first entry of each alert | summarize arg_min(Timestamp, *) by AlertId // Get the alert statistics | summarize Triggers = count(), AlertIds = make_set(AlertId) by Title | top 10 by Triggers