- A
HTTPCode_ELB_5XX_Count
Why wrong: This metric reports errors generated by the load balancer itself (e.g., 503 due to no healthy targets), not HTTP 5xx errors from the application.
- B
HTTPCode_Target_5XX_Count
This metric counts HTTP 5xx responses from the registered targets. It directly reflects application-level errors and is appropriate for the alarm.
- C
RequestCount
Why wrong: RequestCount is the total number of requests. While it can be used to compute error rate when combined with error counts, using the error count metric directly is simpler and more accurate.
- D
TargetResponseTime
Why wrong: TargetResponseTime measures response latency, not error responses. It is not suitable for monitoring HTTP 5xx errors.
Quick Answer
The correct metric is HTTPCode_Target_5XX_Count, because it specifically tracks HTTP 5xx responses generated by the EC2 instances behind the Application Load Balancer, directly reflecting application-level errors rather than load balancer infrastructure issues. This metric is essential for the ALB target 5xx error rate alarm because it isolates errors from the application targets themselves, allowing you to divide it by RequestCount to calculate the precise error percentage over a 5-minute period. On the AWS Certified SysOps Administrator Associate SOA-C02 exam, this distinction is a common trap—candidates often confuse HTTPCode_ELB_5XX_Count (which tracks load balancer-generated errors like 503 due to capacity issues) with the target-specific metric. The exam tests your ability to match the metric to the monitoring objective: application health versus infrastructure health. Remember the memory tip: “Targets produce the 5xx; the ELB just passes them through”—so always choose HTTPCode_Target_5XX_Count when the alarm must reflect actual application errors.
SOA-C02 Monitoring, Logging, and Remediation Practice Question
This SOA-C02 practice question tests your understanding of monitoring, logging, and remediation. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. A key principle to apply: hTTPCode_Target_5XX_Count tracks 5xx errors originating from registered targets.. 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 company runs a web application on Amazon EC2 instances behind an Application Load Balancer (ALB). The SysOps administrator needs to monitor the application's HTTP 5xx error rate and set an alarm when the error rate exceeds 5% over a 5-minute period. The alarm must trigger an Amazon SNS notification. Which metric should be used for the alarm?
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
HTTPCode_Target_5XX_Count
Option B is correct because the alarm must monitor the error rate from the application targets (EC2 instances) behind the ALB. HTTPCode_Target_5XX_Count tracks HTTP 5xx responses generated by the targets themselves, which directly reflects application-level errors. To calculate the error rate, you would divide this metric by RequestCount, but the metric itself is the correct source for target-side 5xx errors.
Key principle: HTTPCode_Target_5XX_Count tracks 5xx errors originating from registered targets.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
HTTPCode_ELB_5XX_Count
Why it's wrong here
This metric reports errors generated by the load balancer itself (e.g., 503 due to no healthy targets), not HTTP 5xx errors from the application.
- ✓
HTTPCode_Target_5XX_Count
- ✗
RequestCount
Why it's wrong here
RequestCount is the total number of requests. While it can be used to compute error rate when combined with error counts, using the error count metric directly is simpler and more accurate.
- ✗
TargetResponseTime
Why it's wrong here
TargetResponseTime measures response latency, not error responses. It is not suitable for monitoring HTTP 5xx errors.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates confuse HTTPCode_ELB_5XX_Count with HTTPCode_Target_5XX_Count, assuming all 5xx errors originate from the load balancer, when in fact the ALB separates its own errors from target-generated errors to provide precise fault isolation.
Detailed technical explanation
How to think about this question
Under the hood, the ALB distinguishes between errors it generates (ELB 5xx) and errors from targets (Target 5xx) by inspecting the HTTP response status code from the backend. For example, if a target returns a 503 due to a database timeout, it increments HTTPCode_Target_5XX_Count, while a 503 from the ALB due to no healthy targets increments HTTPCode_ELB_5XX_Count. In real-world scenarios, monitoring only ELB 5xx could mask application failures, such as a misconfigured web server returning 500 errors, which is why target-side metrics are essential for application health.
KKey Concepts to Remember
- HTTPCode_Target_5XX_Count tracks 5xx errors originating from registered targets.
- This metric indicates application-level issues on EC2 instances.
- It is crucial for monitoring the health of the application code.
- CloudWatch alarms can use this metric to trigger SNS notifications.
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
HTTPCode_Target_5XX_Count tracks 5xx errors originating from registered targets.
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. HTTPCode_Target_5XX_Count tracks 5xx errors originating from registered targets. 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 hTTPCode_Target_5XX_Count tracks 5xx errors originating from registered targets., 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 — HTTPCode_Target_5XX_Count tracks 5xx errors originating from registered targets..
What is the correct answer to this question?
The correct answer is: HTTPCode_Target_5XX_Count — Option B is correct because the alarm must monitor the error rate from the application targets (EC2 instances) behind the ALB. HTTPCode_Target_5XX_Count tracks HTTP 5xx responses generated by the targets themselves, which directly reflects application-level errors. To calculate the error rate, you would divide this metric by RequestCount, but the metric itself is the correct source for target-side 5xx errors.
What should I do if I get this SOA-C02 question wrong?
Review hTTPCode_Target_5XX_Count tracks 5xx errors originating from registered targets., then practise related SOA-C02 questions on the same topic to reinforce the concept.
What is the key concept behind this question?
HTTPCode_Target_5XX_Count tracks 5xx errors originating from registered targets.
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 →
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.