Query Details

Who Deleted Alert Rule

Query

AzureActivity
| where OperationName == "Delete Alert Rules" and ActivityStatusValue == "Succeeded" 
| project Caller , EventSubmissionTimestamp

Explanation

This query is searching in the AzureActivity table for events where the operation name is "Delete Alert Rules" and the activity status is "Succeeded". It then selects the Caller and EventSubmissionTimestamp columns from the results.

Details

Rod Trent profile picture

Rod Trent

Released: March 26, 2020

Tables

AzureActivity

Keywords

AzureActivity,OperationName,DeleteAlertRules,ActivityStatusValue,Succeeded,Caller,EventSubmissionTimestamp

Operators

====and==project

Actions