Annotate Cloudwatch dashboards with horizontal/vertical annotations
$ npm install --global aws-cw-annotate
$ aws-cw-annotate help
Usage:
aws-cw-annotate dashboard_name
Options:
--fill, -f Fill value for annotation (before/after/between)
--color, -c Annotation color
--widget-title, -w Update only widgets whose title matching specified regex
--limit, -l Max number of aws-cw-annotate annotations to maintain
--title, -t Annotation title. Default: 'Deployment'
--value, -v Annotation value. Default: Current time
--horizontal, -h Add horizontal annotation instead of vertical (default)
Initial setup for AWS credentials available via environment variables or via the shared credentials file is necessary. Please look at AWS credentials documentation for details.
# Vertical annotation between two timestamps
aws-cw-annotate api-metrics --widget-title annotations --title 'Deployment #42' --value '2018-08-28T11:56:47Z' --upto '2018-08-29T11:59:47Z'
# Vertical annotation at a single timestamp
aws-cw-annotate api-metrics --widget-title annotations --title 'Enable feature toggle' --value '2018-08-28T11:56:47Z'