Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 444 Bytes

Visualization - ActionsPerformed.md

File metadata and controls

17 lines (15 loc) · 444 Bytes

Visualisation of ActionTypes that have been seen in the Cloud App logs in the last 30 days

Defender For Endpoint

CloudAppEvents
| where Timestamp > ago(30d)
| summarize count() by ActionType
| render piechart with(title="ActionTypes triggered last 30 days")

Sentinel

CloudAppEvents
| where TimeGenerated > ago(30d)
| summarize count() by ActionType
| render piechart with(title="ActionTypes triggered last 30 days")