Supervision et dépannage sur AWS
John Q. Martin
Principal Consultant
Chapitre 1 - Introduction à CloudWatch
Chapitre 2 - Journaux, alarmes et notifications
Chapitre 3 - Traces et tableaux de bord


« Mon système fonctionne-t-il comme prévu ? »
« Pourquoi mon système se comporte-t-il ainsi ? »













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
Supervision et dépannage sur AWS