🇺🇸 AWS Certified Solutions Architect · subject
AWS Certified Solutions Architect Operational Excellence, Monitoring, and Governance Syllabus
Every chapter and topic of Operational Excellence, Monitoring, and Governance examined in AWS Certified Solutions Architect — 3 chapters, 9 topics and 23 sub-topics, plus 51 flashcards written against it.
Operational Excellence, Monitoring, and Governance syllabus — full chapter and topic list
Expand any chapter to see its topics and sub-topics. This is the whole examinable outline for Operational Excellence, Monitoring, and Governance in AWS Certified Solutions Architect, not a summary of it.
-
Monitoring and Observability
3 topics- Metrics, Logs, and Alarms
- CloudWatch metrics, dashboards, and alarms
- CloudWatch Logs and Logs Insights
- Custom metrics and metric filters
- Tracing and Auditing
- AWS X-Ray distributed tracing
- AWS CloudTrail event history and trails
- AWS Config resource compliance tracking
- Automated Response
- EventBridge-driven remediation
- CloudWatch alarms triggering Auto Scaling and SNS
- Metrics, Logs, and Alarms
-
Infrastructure as Code and Automation
3 topics- Provisioning Infrastructure
- CloudFormation stacks, templates, and change sets
- Nested stacks and StackSets across accounts
- AWS CDK overview
- Configuration and Operations Management
- Systems Manager (Run Command, Patch Manager, Session Manager)
- Elastic Beanstalk managed deployments
- Deployment Strategies
- Blue/green and canary deployments
- Rolling updates and immutable infrastructure
- Provisioning Infrastructure
-
Exam Readiness and Scenario Analysis
3 topics- Exam Structure and Strategy
- SAA-C03 domains and weightings
- Question types and elimination techniques
- Time management and flagging questions
- Scenario-Based Decision Making
- Mapping requirements to the right AWS service
- Balancing cost, performance, security, and resilience
- Identifying least-privilege and most-cost-effective answers
- Practice and Review
- Working through full-length practice exams
- Reviewing AWS whitepapers and FAQs
- Exam Structure and Strategy
Operational Excellence, Monitoring, and Governance flashcards for AWS Certified Solutions Architect
22 of 51 cards from the Operational Excellence, Monitoring, and Governance deck — real questions with worked answers.
In Amazon CloudWatch, what is the difference between a standard metric and a custom metric?
Standard metrics are published automatically by AWS services (e.g., EC2 CPUUtilization). Custom metrics are application-defined values you publish via PutMetricData (e.g., memory usage, queue depth, business KPIs).
What is the default (standard) resolution and the high-resolution granularity for CloudWatch custom metrics?
Standard resolution metrics have 1-minute granularity. High-resolution custom metrics support down to 1-second granularity (1, 5, 10, 30, or 1 second periods).
Why are EC2 memory and disk-space utilization not available as standard CloudWatch metrics, and how do you collect them?
They live inside the guest OS and are invisible to the hypervisor, so AWS cannot see them. You collect them by installing the CloudWatch Agent (or legacy scripts) to publish them as custom metrics.
What are the three states of a CloudWatch alarm?
OK (metric within threshold), ALARM (threshold breached), and INSUFFICIENT_DATA (not enough data to determine state, e.g., the metric just started or data is missing).
What does a CloudWatch alarm's 'Evaluation Period' and 'Datapoints to Alarm' (M out of N) control?
The evaluation range is N consecutive periods; the alarm triggers when M of those N datapoints breach the threshold. This 'M out of N' setting reduces false alarms from transient spikes.
What three action types can a CloudWatch alarm invoke when it changes state?
Notification actions (publish to an SNS topic), Auto Scaling actions (scale a group), and EC2 actions (stop, terminate, reboot, or recover the instance).
In CloudWatch Logs, what is the relationship between a log group and a log stream?
A log group is a container that shares retention, monitoring, and access settings; a log stream is a sequence of log events from the same source (e.g., one EC2 instance or container) within that group.
What is a CloudWatch Logs metric filter used for?
It scans incoming log events for a pattern (e.g., 'ERROR' or a status code) and converts matches into a numeric CloudWatch metric, which you can then alarm on.
What is CloudWatch Logs Insights?
An interactive query service that lets you search and analyze log group data using a purpose-built query language with commands like fields, filter, stats, and sort.
What is the default retention period for CloudWatch Logs if you do not configure it?
Logs are retained indefinitely (Never Expire) by default; you must explicitly set a retention policy (1 day to 10 years) to control storage cost.
What is AWS X-Ray and what problem does it solve?
X-Ray is a distributed tracing service that traces requests as they travel through microservices, helping you analyze performance bottlenecks, latency, and errors across a distributed application.
In AWS X-Ray, what is the difference between a segment and a subsegment?
A segment records data about the work done by a single service/resource for a request; subsegments break that segment into finer-grained units (e.g., individual downstream calls like a DynamoDB query).
What is the X-Ray service map?
A visual graph of your application's services and their connections, showing latency, request rates, and error/fault rates between nodes to help locate problem areas.
What does AWS CloudTrail record?
CloudTrail records API calls and account activity (who did what, when, from where) across your AWS account for governance, compliance, and operational/security auditing.
Compare AWS CloudTrail and Amazon CloudWatch in one sentence each.
CloudTrail answers 'who made which API call' (auditing/governance). CloudWatch answers 'how is my resource performing' (metrics, logs, alarms / monitoring).
What are CloudTrail management events vs. data events?
Management events log control-plane operations (e.g., creating an EC2 instance, configuring security). Data events log data-plane, high-volume operations (e.g., S3 GetObject, Lambda Invoke) and are not logged by default.
For an organization-wide, tamper-evident audit trail of all regions, what CloudTrail configuration do you use?
Create an organization trail that is multi-region, delivering to a centralized S3 bucket with log file validation enabled (and ideally SSE-KMS and MFA delete).
What is AWS Config and what does it track?
AWS Config records the configuration of your AWS resources over time, giving a configuration history and timeline, and continuously evaluates resources against desired-state rules for compliance.
What is the difference between AWS Config and AWS CloudTrail?
AWS Config tracks the state/configuration of resources and whether it complies with rules; CloudTrail tracks the API actions/events that changed them. Config = 'what does it look like now/over time', CloudTrail = 'who changed it'.
What is an AWS Config rule, and what are the two evaluation trigger types?
A Config rule represents desired configuration settings. It can be triggered by configuration changes (evaluated when a resource changes) or periodically (evaluated on a fixed schedule).
What is an AWS Config conformance pack?
A collection of Config rules and remediation actions packaged together as a single deployable entity, used to enforce a compliance/governance baseline across accounts and regions.
How can you automatically remediate a non-compliant resource detected by AWS Config?
Attach an automatic remediation action to the Config rule, which invokes an AWS Systems Manager Automation document (runbook) to fix the resource.
See more Operational Excellence, Monitoring, and Governance flashcards →
Planning Operational Excellence, Monitoring, and Governance for AWS Certified Solutions Architect
Operational Excellence, Monitoring, and Governance is about 14% of the AWS Certified Solutions Architect syllabus by topic count — 9 of 65 topics, spread over 3 chapters. At roughly 45 minutes per topic plus 12 minutes per sub-topic, a first pass runs to about 10 hours.
The heaviest chapters are Monitoring and Observability (3 topics), Infrastructure as Code and Automation (3 topics), Exam Readiness and Scenario Analysis (3 topics) . Front-load those while your energy is high; the short chapters are better revision filler later.
Work top-down: read the chapter, then tick topics off individually rather than marking the whole chapter done. Sub-topics are where silent gaps hide.
Operational Excellence, Monitoring, and Governance (AWS Certified Solutions Architect) FAQ
What is in the AWS Certified Solutions Architect Operational Excellence, Monitoring, and Governance syllabus?
Operational Excellence, Monitoring, and Governance is split into 3 chapters — Monitoring and Observability, Infrastructure as Code and Automation and Exam Readiness and Scenario Analysis, containing 9 topics and 23 sub-topics in total.
How is Operational Excellence, Monitoring, and Governance structured in the AWS Certified Solutions Architect syllabus?
3 chapters. Operational Excellence, Monitoring, and Governance accounts for about 14% of the topics in the whole AWS Certified Solutions Architect syllabus (9 of 65).
How long should I spend on Operational Excellence, Monitoring, and Governance for AWS Certified Solutions Architect?
Budget around 10 hours for a first pass through Operational Excellence, Monitoring, and Governance — about 45 minutes per topic plus 12 minutes per sub-topic across its 9 topics. Add revision cycles on top.
Are there flashcards for AWS Certified Solutions Architect Operational Excellence, Monitoring, and Governance?
Yes — a 51-card Operational Excellence, Monitoring, and Governance deck. Sample cards are printed on this page, and the full deck is free in the Examius app with spaced repetition scheduling.