Azure Administrator Associate · 18% of the exam

Monitor and maintain resources: free practice questions

5 sample questions from our 45-question bank for this domain — answers and explanations included. These are the same scenario-based style as the real Azure exam.

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.

2. A cloud operations engineer needs to monitor end-to-end connectivity between an on-premises server and an Azure VM over a VPN gateway. The engineer wants continuous monitoring with latency measurements and automatic alerting if connectivity degrades, not just a one-time check. Which Network Watcher feature should be used?

  • A. IP flow verify — run periodic checks against the VPN gateway NSG rules
  • B. Connection monitor — create a test group with the on-premises server as source and Azure VM as destination✓ Correct
  • C. Packet capture — schedule recurring packet captures between the endpoints
  • D. Next hop — verify the routing path from the on-premises server to the Azure VM
Explanation

Connection monitor is designed for continuous, automated monitoring of network connectivity between sources and destinations, including hybrid scenarios involving on-premises servers (via the Network Watcher agent) and Azure VMs. It provides ongoing latency measurements, packet loss statistics, and integrates with Azure Monitor for alerting when thresholds are breached. IP flow verify is a one-time, on-demand tool that checks whether NSG rules would allow or deny a specific packet — it does not provide continuous monitoring or latency data. Packet capture captures raw traffic for a defined session and is used for deep diagnostics, not continuous connectivity monitoring. Next hop identifies the routing next hop for a given destination from an Azure VM — it is a one-time diagnostic tool and cannot monitor on-premises sources or provide continuous latency measurements.

3. You manage a production web application hosted on an Azure VM. You need to be notified within 5 minutes whenever the VM's available memory drops below 500 MB. You have already deployed the Azure Monitor Agent and configured a Data Collection Rule. What should you configure next?

  • A. Create a metric alert rule targeting the 'Available Memory Bytes' metric on the VM, set the threshold to 500 MB, and attach an action group that sends an email notification.✓ Correct
  • B. Create a log alert rule that queries the Heartbeat table in Log Analytics every 5 minutes and sends an alert if the VM stops reporting.
  • C. Enable Azure Diagnostics extension on the VM and configure an alert on the 'Percentage CPU' metric.
  • D. Create an Activity log alert scoped to the VM resource and configure it to fire when a memory event is written to the Activity log.
Explanation

With the Azure Monitor Agent and a Data Collection Rule in place, guest OS metrics such as 'Available Memory Bytes' are surfaced as custom metrics in Azure Monitor. A metric alert rule can evaluate this metric at 1-minute granularity, making sub-5-minute detection possible, and an action group delivers the email notification. — Option B is wrong because the Heartbeat table only indicates whether the agent is alive; it does not report memory values. — Option C is wrong because the Azure Diagnostics extension is a legacy approach, and 'Percentage CPU' is irrelevant to a memory threshold requirement. — Option D is wrong because the Activity log records control-plane operations (start, stop, resize), not guest OS performance counters like available memory.

4. An organization's Azure environment generates a large volume of Azure Monitor alerts daily. The operations team lead reports that engineers are experiencing 'alert fatigue' because many alerts are firing on known, recurring issues that are being tracked in the change management backlog. The lead wants to suppress all alert notifications for a specific set of 10 resources for the next 30 days while keeping the underlying alert rules active and the alerts still recorded in the Azure Monitor alerts history. Which feature should be used?

  • A. Disable the alert rules for the 10 affected resources for 30 days, then re-enable them after the maintenance period.
  • B. Create an Alert Processing Rule with a 'Suppress notifications' action, scoped to the 10 specific resources, with a one-time schedule for the 30-day period.✓ Correct
  • C. Set the severity of all alert rules for the 10 resources to 'Informational (Sev 4)' so that they do not trigger action group notifications.
  • D. Delete the action groups associated with the alert rules for the 10 resources and recreate them after 30 days.
Explanation

An Alert Processing Rule with a 'Suppress notifications' action is specifically designed for this scenario. It can be scoped to specific resources, set to a defined schedule (30-day one-time window), and will suppress action group notifications while leaving alert rules fully active and alert instances still recorded in the Azure Monitor alerts history. This meets all requirements. Option A is incorrect because disabling the alert rules would stop alert evaluation entirely, meaning alerts would not be recorded in the history — this violates the requirement to keep alerts recorded. Option C is incorrect because lowering severity to Informational does not inherently suppress action group notifications; action groups fire based on the alert condition being met, not the severity level (unless action groups are separately filtered by severity). Option D is incorrect because deleting action groups is a destructive action that removes shared configuration potentially used by other alert rules; it is operationally risky and does not suppress notifications gracefully.

5. An enterprise architect needs to configure monitoring for a new Azure Virtual Network. The team requires THREE specific capabilities: (1) capture all traffic flowing through a subnet for forensic analysis during an incident, (2) test whether a VM in the VNet can reach an external HTTPS endpoint on a recurring schedule, and (3) determine whether a specific TCP flow from one VM to another is being dropped by an NSG and identify the offending rule. Which THREE Network Watcher features map to these requirements respectively? (Select THREE)

  • A. Packet Capture — for requirement 1✓ Correct
  • B. Connection Monitor — for requirement 2✓ Correct
  • C. IP Flow Verify — for requirement 3✓ Correct
  • D. Network Performance Monitor — for requirement 1
  • E. Traffic Analytics — for requirement 2
  • F. Next Hop — for requirement 3
Explanation

Packet Capture (Option A) records actual network packets flowing through a VM's NIC to a storage account or file, making it ideal for forensic traffic analysis. Connection Monitor (Option B) is designed for recurring synthetic connectivity tests — you can configure probes from a VM to an external HTTPS endpoint on a schedule and receive alerts when connectivity degrades. IP Flow Verify (Option C) evaluates NSG rules for a specific 5-tuple (source IP, destination IP, source port, destination port, protocol) and returns whether the traffic is allowed or denied and which rule is responsible. — Option D is wrong: Network Performance Monitor (now part of Connection Monitor) measures latency/packet loss on network paths but does not capture raw packets for forensic use. — Option E is wrong: Traffic Analytics processes NSG Flow Logs to provide aggregate traffic pattern insights across a network, not real-time or scheduled endpoint reachability tests. — Option F is wrong: Next Hop determines the routing path (next hop type and IP) for traffic from a VM, which is used for routing troubleshooting, not NSG rule evaluation.

40 more questions in this domain

Practice the full bank with instant grading, flashcards, and a timed mock exam.

Start practicing free
Monitor and maintain resources — Free Azure Administrator Associate Practice Questions | DataCertPrep — Certification Prep