- A
Create a CloudWatch alarm on the CPUUtilization metric and configure the alarm to send a notification to an Amazon SNS topic with email subscriptions.
This is the simplest approach. CloudWatch natively monitors EC2 metrics and can trigger SNS notifications without any custom code.
- B
Create an Amazon EventBridge rule that triggers an AWS Lambda function to check the CPUUtilization metric and send an email via Amazon SES.
Why wrong: This adds unnecessary complexity. CloudWatch alarms already provide the needed evaluation and SNS integration.
- C
Configure the EC2 instance to publish CPU logs to Amazon CloudWatch Logs, then create a metric filter to detect high CPU and trigger an SNS notification.
Why wrong: CPU utilization is already available as a CloudWatch metric, not a log. This approach is inefficient and requires custom log publishing.
- D
Use AWS CloudTrail to monitor EC2 CPU metrics and send notifications to an Amazon SQS queue.
Why wrong: CloudTrail records API calls, not performance metrics. It cannot monitor CPU utilization.
Quick Answer
The correct combination is a CloudWatch alarm on the CPUUtilization metric paired with an Amazon SNS topic for email notifications. This works because the alarm directly evaluates the metric over a specified number of consecutive periods—here, five 1-minute periods—triggering when the average CPU utilization exceeds 90%, and then publishes the state change to the SNS topic, which handles the email delivery without any additional servers or code. On the AWS Certified SysOps Administrator Associate SOA-C02 exam, this scenario tests your understanding of native monitoring integrations and the principle of minimizing operational overhead; a common trap is overcomplicating the solution by adding Lambda or EC2 instances for notification logic. Remember the key: CloudWatch alarms are the simplest way to react to metric thresholds, and SNS is the default notification channel. A useful memory tip is “Alarm + SNS = No extra mess,” reinforcing that direct metric-to-notification linkage avoids unnecessary infrastructure.
SOA-C02 Monitoring, Logging, and Remediation Practice Question
This SOA-C02 practice question tests your understanding of monitoring, logging, and remediation. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. A key principle to apply: cloudWatch automatically collects standard EC2 metrics like CPUUtilization.. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A SysOps administrator needs to monitor the CPU utilization of an Amazon EC2 instance and receive an email notification when the metric exceeds 90% for 5 consecutive minutes. The solution should use the least operational overhead. Which combination of AWS services should be used?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"least"Why it matters: You want the option with minimum overhead, fewest steps, or lowest impact — not the most feature-rich or comprehensive answer.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Create a CloudWatch alarm on the CPUUtilization metric and configure the alarm to send a notification to an Amazon SNS topic with email subscriptions.
Option A is correct because a CloudWatch alarm directly monitors the CPUUtilization metric for an EC2 instance and can be configured to evaluate whether the metric exceeds 90% for 5 consecutive minutes (e.g., 5 evaluation periods of 1 minute each). The alarm then publishes to an Amazon SNS topic, which sends email notifications to subscribed endpoints, requiring no additional infrastructure or code, thus minimizing operational overhead.
Key principle: CloudWatch automatically collects standard EC2 metrics like CPUUtilization.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Create a CloudWatch alarm on the CPUUtilization metric and configure the alarm to send a notification to an Amazon SNS topic with email subscriptions.
Why this is correct
This is the simplest approach. CloudWatch natively monitors EC2 metrics and can trigger SNS notifications without any custom code.
Clue confirmation
The clue word "least" in the question point toward this answer.
Related concept
CloudWatch automatically collects standard EC2 metrics like CPUUtilization.
- ✗
Create an Amazon EventBridge rule that triggers an AWS Lambda function to check the CPUUtilization metric and send an email via Amazon SES.
Why it's wrong here
This adds unnecessary complexity. CloudWatch alarms already provide the needed evaluation and SNS integration.
- ✗
Configure the EC2 instance to publish CPU logs to Amazon CloudWatch Logs, then create a metric filter to detect high CPU and trigger an SNS notification.
Why it's wrong here
CPU utilization is already available as a CloudWatch metric, not a log. This approach is inefficient and requires custom log publishing.
- ✗
Use AWS CloudTrail to monitor EC2 CPU metrics and send notifications to an Amazon SQS queue.
Why it's wrong here
CloudTrail records API calls, not performance metrics. It cannot monitor CPU utilization.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates may overcomplicate the solution by introducing Lambda or log-based filters, when the simplest and most direct path—a CloudWatch alarm on the existing CPUUtilization metric with an SNS action—is the correct answer for minimal operational overhead.
Detailed technical explanation
How to think about this question
CloudWatch alarms evaluate metric streams using a statistic (e.g., Average) over a specified period (e.g., 1 minute) and treat missing data as 'notBreaching' by default. The alarm transitions to ALARM state when the threshold is exceeded for the specified number of consecutive evaluation periods (e.g., 5), and then triggers an SNS action. SNS uses a fan-out architecture to deliver messages to multiple protocols (email, SMS, HTTP) via subscription confirmation, ensuring reliable notification delivery.
KKey Concepts to Remember
- CloudWatch automatically collects standard EC2 metrics like CPUUtilization.
- CloudWatch alarms can be configured with thresholds, durations, and actions.
- Amazon SNS is a fully managed messaging service for sending notifications.
- SNS supports email subscriptions for direct notification delivery.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
CloudWatch automatically collects standard EC2 metrics like CPUUtilization.
Real-world example
How this comes up in practice
A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. CloudWatch automatically collects standard EC2 metrics like CPUUtilization. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.
What to study next
Got this wrong? Here's your next step.
Review cloudWatch automatically collects standard EC2 metrics like CPUUtilization., then practise related SOA-C02 questions on the same topic to reinforce the concept.
- →
Monitoring, Logging, and Remediation — study guide chapter
Learn the concepts, then practise the questions
- →
Monitoring, Logging, and Remediation practice questions
Targeted practice on this topic area only
- →
All SOA-C02 questions
1,546 questions across all exam domains
- →
AWS Certified SysOps Administrator Associate SOA-C02 study guide
Full concept coverage aligned to exam objectives
- →
SOA-C02 practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related SOA-C02 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Monitoring, Logging, and Remediation practice questions
Practise SOA-C02 questions linked to Monitoring, Logging, and Remediation.
Reliability and Business Continuity practice questions
Practise SOA-C02 questions linked to Reliability and Business Continuity.
Deployment, Provisioning, and Automation practice questions
Practise SOA-C02 questions linked to Deployment, Provisioning, and Automation.
Security and Compliance practice questions
Practise SOA-C02 questions linked to Security and Compliance.
Networking and Content Delivery practice questions
Practise SOA-C02 questions linked to Networking and Content Delivery.
Cost and Performance Optimization practice questions
Practise SOA-C02 questions linked to Cost and Performance Optimization.
SOA-C02 fundamentals practice questions
Practise SOA-C02 questions linked to SOA-C02 fundamentals.
SOA-C02 scenario practice questions
Practise SOA-C02 questions linked to SOA-C02 scenario.
SOA-C02 troubleshooting practice questions
Practise SOA-C02 questions linked to SOA-C02 troubleshooting.
Practice this exam
Start a free SOA-C02 practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this SOA-C02 question test?
Monitoring, Logging, and Remediation — This question tests Monitoring, Logging, and Remediation — CloudWatch automatically collects standard EC2 metrics like CPUUtilization..
What is the correct answer to this question?
The correct answer is: Create a CloudWatch alarm on the CPUUtilization metric and configure the alarm to send a notification to an Amazon SNS topic with email subscriptions. — Option A is correct because a CloudWatch alarm directly monitors the CPUUtilization metric for an EC2 instance and can be configured to evaluate whether the metric exceeds 90% for 5 consecutive minutes (e.g., 5 evaluation periods of 1 minute each). The alarm then publishes to an Amazon SNS topic, which sends email notifications to subscribed endpoints, requiring no additional infrastructure or code, thus minimizing operational overhead.
What should I do if I get this SOA-C02 question wrong?
Review cloudWatch automatically collects standard EC2 metrics like CPUUtilization., then practise related SOA-C02 questions on the same topic to reinforce the concept.
Are there clue words in this question I should notice?
Yes — watch for: "least". You want the option with minimum overhead, fewest steps, or lowest impact — not the most feature-rich or comprehensive answer.
What is the key concept behind this question?
CloudWatch automatically collects standard EC2 metrics like CPUUtilization.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
2 more ways this is tested on SOA-C02
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A SysOps administrator needs to monitor the CPU utilization of an Amazon EC2 instance and receive an alert if it exceeds 80% for 10 consecutive minutes. The instance is in a VPC with no Internet access. What is the MOST efficient way to meet these requirements?
easy- A.Use AWS Systems Manager to run a script on the instance that checks CPU and sends an SNS notification.
- ✓ B.Create a CloudWatch alarm on the CPUUtilization metric with a period of 5 minutes and an evaluation period of 2.
- C.Enable detailed monitoring on the EC2 instance and create a CloudWatch alarm on the CPUUtilization metric.
- D.Install the CloudWatch agent on the EC2 instance to collect CPU metrics and create a CloudWatch alarm.
Why B: Option B is correct because a CloudWatch alarm with a period of 5 minutes and an evaluation period of 2 means the alarm evaluates two consecutive 5-minute data points, totaling 10 minutes. Since the EC2 instance is in a VPC with no Internet access, CloudWatch metrics are still reported via the CloudWatch service endpoint within the VPC (or via VPC endpoints), so no additional agent or script is needed. This is the most efficient approach as it uses native CloudWatch functionality without requiring any custom scripts or additional software.
Variation 2. A SysOps administrator needs to monitor the CPU utilization of an Amazon EC2 instance and send an alert when it exceeds 90% for 5 consecutive minutes. Which combination of AWS services should the administrator use to meet this requirement?
easy- ✓ A.Amazon CloudWatch metric (CPUUtilization), a CloudWatch alarm, and an Amazon SNS topic.
- B.Amazon CloudWatch Logs, a metric filter to extract CPU utilization from logs, and an alarm on that metric.
- C.A CloudWatch dashboard and an AWS Lambda function that checks the dashboard periodically.
- D.Amazon EventBridge (CloudWatch Events) and a Lambda function that calls the EC2 DescribeInstances API.
Why A: The correct approach is to use a CloudWatch metric for CPUUtilization, which is automatically published by EC2 instances. A CloudWatch alarm can be configured to evaluate this metric over a period of 5 consecutive minutes with a threshold of 90%, and when the alarm state is triggered, it publishes to an SNS topic to send notifications. This is the native, efficient, and recommended method for monitoring and alerting on EC2 CPU utilization.
Keep practising
More SOA-C02 practice questions
- A company uses an Amazon DynamoDB table with on-demand capacity mode. The table handles a workload with a steady baselin…
- A company uses Amazon CloudWatch Logs to store application logs. The SysOps administrator needs to count the occurrences…
- A SysOps administrator needs to monitor the CPU utilization of an Amazon EC2 instance and send an alert when it exceeds…
- A SysOps administrator needs to monitor the CPU utilization of an Amazon EC2 instance fleet and send an alert when the a…
- A company's security policy requires that all Amazon S3 buckets must have server-side encryption enabled. The SysOps adm…
- A SysOps administrator uses AWS CloudFormation to deploy a stack that includes an Amazon EC2 instance. The administrator…
Last reviewed: Jun 11, 2026
This SOA-C02 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SOA-C02 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.