0
0
Azurecloud~20 mins

Alerts and action groups in Azure - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Alerts Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
2:00remaining
What happens when an Azure alert rule triggers?

An Azure alert rule is configured to monitor CPU usage above 80%. What is the immediate result when the CPU usage exceeds 80%?

AThe alert rule triggers and sends notifications to all linked action groups immediately.
BThe alert rule triggers but notifications are sent only after manual approval.
CThe alert rule triggers and automatically scales the VM without notifications.
DThe alert rule triggers but no action occurs unless a script is manually run.
Attempts:
2 left
💡 Hint

Think about how Azure alert rules and action groups work together to notify users.

Configuration
intermediate
2:00remaining
Which JSON snippet correctly defines an Azure action group with an email receiver?

Choose the JSON snippet that correctly configures an Azure action group with an email receiver named 'OpsTeam'.

A{ "actionGroupName": "OpsAlertGroup", "email": [{ "receiver": "OpsTeam", "emailAddress": "ops@example.com" }] }
B{ "name": "OpsAlertGroup", "emailReceivers": [{ "email": "ops@example.com", "receiverName": "OpsTeam" }] }
C{ "name": "OpsAlertGroup", "emailReceivers": [{ "name": "OpsTeam", "emailAddress": "ops@example.com" }] }
D{ "groupName": "OpsAlertGroup", "receivers": [{ "type": "email", "name": "OpsTeam", "address": "ops@example.com" }] }
Attempts:
2 left
💡 Hint

Look for the correct property names used in Azure action group JSON schema.

Architecture
advanced
3:00remaining
How to design alerting for multi-region Azure VMs with minimal notification delay?

You have VMs deployed in two Azure regions. You want alerts for high CPU usage to notify the on-call engineer with minimal delay and avoid duplicate alerts. Which design is best?

ACreate alert rules in each region but configure action groups to notify different engineers to avoid duplicates.
BCreate separate alert rules and action groups in each region, both notifying the same engineer email.
CUse only one region's alert rules and ignore the other region's metrics to reduce alerts.
DCreate a centralized Log Analytics workspace and alert rule aggregating metrics from both regions, linked to one action group.
Attempts:
2 left
💡 Hint

Think about centralizing monitoring to reduce duplicate alerts and delays.

security
advanced
2:30remaining
What is the security risk of using a shared action group with multiple teams?

You configure one action group shared by multiple teams for alerts. What is a potential security risk of this setup?

AAction groups cannot be shared, so this setup will cause configuration errors.
BTeams may receive alerts irrelevant to their responsibilities, causing alert fatigue and possible ignoring of critical alerts.
CSharing action groups encrypts alert data, preventing teams from reading alerts.
DUsing shared action groups disables email notifications for all teams.
Attempts:
2 left
💡 Hint

Consider how alert relevance affects team response and security.

Best Practice
expert
3:00remaining
How to implement automated remediation using Azure alerts and action groups?

You want to automatically restart a VM when a CPU alert triggers. Which action group configuration enables this automation?

AConfigure the action group with a webhook receiver that calls an Azure Function to restart the VM.
BConfigure the action group with an email receiver to notify the admin to restart the VM manually.
CConfigure the action group with an SMS receiver to alert the admin to restart the VM manually.
DConfigure the action group with a logic app receiver that sends a report but does not restart the VM.
Attempts:
2 left
💡 Hint

Think about how to trigger automated actions from alerts.