Monitoring and troubleshooting AWS
John Q. Martin
Principal Consultant
Chapter 1 - Introduction to CloudWatch
Chapter 2 - Logs, alarms, & notifications
Chapter 3 - Tracing & Dashboards


"Is my system working as expected?"
"Why is my system behaving this way?"













aws cloudwatch put-metric-data \
--metric-name ActiveUsers --namespace MyBusinessApp \
--unit Count --value 21333 \
--dimensions InstanceId=myinstance66,InstanceType=m1.small
aws cloudwatch put-metric-data --metric-name ActiveUsers \
--namespace MyBusinessApp --value 20 --timestamp 2026-04-20T12:00:00.000Z
aws cloudwatch put-metric-data --metric-name ActiveUsers \
--namespace MyBusinessApp --value 36 --timestamp 2026-04-20T12:01:00.000Z
Monitoring and troubleshooting AWS