Query Details

Visualization User Risk Events

Query

# User Risk Visualization last 90 days

## Query Information

#### Description
This 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 amongs others be:
- AnonymizedIPAddress
- NewCountry
- UnfamliliarFeatures

This visualization can give insight in the amount of risky events that have happened. 

#### References
- https://learn.microsoft.com/en-us/azure/azure-monitor/reference/tables/aaduserriskevents

## Sentinel
```
AADUserRiskEvents
| where TimeGenerated > ago(90d)
| summarize count() by bin(TimeGenerated, 1d), RiskEventType
| render columnchart
```

Explanation

This query retrieves and visualizes the User Risk Events that have occurred in the last 90 days. It groups the events by RiskEventType, such as AnonymizedIPAddress, NewCountry, and UnfamiliarFeatures. The visualization provides insights into the number of risky events that have occurred each day.

Details

Bert-Jan Pals profile picture

Bert-Jan Pals

Released: February 14, 2023

Tables

AADUserRiskEvents

Keywords

User,RiskEventType,TimeGenerated

Operators

where>agosummarizecount()bybin()render

Actions