Question

Difficulty: EasyImplement Azure Monitor Alerts and Action Groups

You are configuring an Azure Monitor alert rule to notify your operations team when a critical application error occurs. You need to configure the Azure Monitor Action Group that will handle the response.

Which of the following actions are supported directly within an Azure Monitor Action Group? (Select two).

  1. Sending an email notification to users assigned to a specific Azure Resource Manager (ARM) RoleAnswer
  2. Triggering an Azure Function to execute a custom remediation workflowAnswer
  3. C
    Automatically scaling out an Azure App Service instance based on CPU threshold metrics defined in the Action Group
  4. D
    Accessing and retrieving secrets directly from Azure Key Vault to authorize external webhook notifications

Answer

Sending an email notification to users assigned to a specific Azure Resource Manager (ARM) Role and Triggering an Azure Function to execute a custom remediation workflow
Azure Monitor Action Groups natively support sending email notifications to members assigned to specific Azure Resource Manager (ARM) roles, as well as triggering Azure Functions to execute custom automation code.

Step-by-Step Solution

1
Identify the purpose of an Azure Monitor Action Group.
Action Groups are collections of notification preferences and actions triggered by an alert.
Understanding the boundary between Alert Rules (which evaluate conditions) and Action Groups (which execute notifications or automation) is key.
2
Evaluate the supported notification and action types in an Action Group.
Supported actions include Email/SMS/Push/Voice, Azure Functions, Logic Apps, Webhooks, Automation Runbooks, ITSM, and Event Hubs.
This confirms that sending emails to ARM roles and triggering Azure Functions are native action types.
3
Differentiate between alert actions and autoscale or security operations.
Scaling operations are defined via Autoscale rules. Credentials or secret retrieval from Key Vault is not a native action group feature.
This rules out the incorrect options regarding App Service scaling and Key Vault secret retrieval.

Key Concept

Azure Monitor Action Groups define a collection of notification preferences and actions to execute when an alert is triggered, supporting native integrations with email, ARM roles, Azure Functions, Logic Apps, and Webhooks.
Rate this question