AWS 监控与故障排查
John Q. Martin
Principal Consultant
第 1 章 - CloudWatch 简介
第 2 章 - 日志、警报与通知
第 3 章 - 追踪与仪表板


"我的系统是否按预期运行?"
"为什么系统会这样表现?"













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
AWS 监控与故障排查