Visualize User Risk In The Last 90 Days
Description
This KQL query visualization list the User Risk Events that have triggered in the last 90 days. The count per day is classified by the RiskEventType, those can among others be:
- AnonymizedIPAddress
- NewCountry
- UnfamliliarFeatures
This visualization can give insight in the amount of risky events that have happened.
Query
Microsoft Sentinel
Kusto
AADUserRiskEvents
| where TimeGenerated > ago(90d)
| summarize count() by bin(TimeGenerated, 1d), RiskEventType
| render columnchart