1. Your organization uses Azure Monitor and has configured a log search alert rule that queries a Log Analytics workspace every 5 minutes. The alert is triggered when the query returns more than 10 results. A new compliance requirement mandates that once an alert fires, no additional notifications should be sent for the same alert condition for at least 60 minutes, to prevent notification fatigue. Which setting in the alert rule should the administrator configure to meet this requirement?
- A. Set the 'Evaluation frequency' to 60 minutes.
- B. Configure an 'Alert processing rule' with a suppression action to suppress notifications for 60 minutes after the first firing.✓ Correct
- C. Set the 'Automatically resolve alerts' option to 60 minutes.
- D. Increase the 'Aggregation granularity (period)' to 60 minutes.
Explanation
An Alert Processing Rule with a 'Suppression' action is the correct mechanism for preventing repeat notifications for a period of time after an alert fires. It can be configured to suppress action group notifications for a specified duration (60 minutes in this case) while the underlying alert rule continues to evaluate. Option A is incorrect: changing the evaluation frequency to 60 minutes would reduce how often the query runs, which changes the detection sensitivity — but the question requires the query to continue running every 5 minutes; only notifications should be suppressed. Option C is incorrect: 'Automatically resolve alerts' refers to how long Azure Monitor waits before auto-resolving a fired alert if the condition is no longer met — it does not control notification suppression for repeat firings. Option D is incorrect: the aggregation granularity controls the time window of data evaluated in each query run, not the notification frequency.