Query Details
# 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") ```
The query retrieves data from the Cloud App logs in the last 30 days and visualizes the different ActionTypes that have been seen. It provides a pie chart showing the count of each ActionType triggered. The query is executed separately for Defender For Endpoint and Sentinel.

Bert-Jan Pals
Released: February 14, 2023
Tables
Keywords
Operators