The Amazon CloudWatch Command Line Tool is used to interface with the Amazon CloudWatch service for setting alarms and getting metric statistics.

The Amazon CloudWatch Command Line Tool requires Java 1.5 or greater and require the following environment variables to be set:

Install Script

If you’re running Linux, this script will do everything this article covers: install_cloudwatch.sh from our aws_scripts collection. Be sure to run it as root or use sudo.

Git Repository

Checkout the repository. This only needs to be done once throughout this series of articles.

Console - user@hostname ~ $

1
git clone https://bitbucket.org/dowdandassociates/aws_scripts.git

Run install script

Console - user@hostname ~ $

1
sudo aws_scripts/install_aws_cli/install_cloudwatch.sh

Direct Download of Script

Console - user@hostname ~ $

1
curl -L https://bitbucket.org/dowdandassociates/aws_scripts/raw/master/install_aws_cli/install_cloudwatch.sh | sudo bash

Install Process

Create the directory in which to download the software if it does not already exist.

Console - root@hostname ~ #

1
mkdir -p /tmp/aws

Create the directory in which to install the software if it does not already exist.

Console - root@hostname ~ #

1
mkdir -p /opt/aws

Download the software.

Console - root@hostname ~ #

1
2
3
curl --silent \
--output /tmp/aws/CloudWatch.zip \
http://ec2-downloads.s3.amazonaws.com/CloudWatch-2010-08-01.zip

Delete any previous unzips of the software that may exist.

Console - root@hostname ~ #

1
rm -fR /tmp/aws/CloudWatch-*

Unzip the software.

Console - root@hostname ~ #

1
unzip -d /tmp/aws /tmp/aws/CloudWatch.zip

Delete any previously installed versions.

Console - root@hostname ~ #

1
rm -fR /opt/aws/CloudWatch

Move the unzipped directory into the install directory.

Console - root@hostname ~ #

1
mv /tmp/aws/CloudWatch-* /opt/aws/CloudWatch

Delete the .zip file.

Console - root@hostname ~ #

1
rm -f /tmp/aws/CloudWatch.zip

Set AWS_CLOUDWATCH_HOME, and put the tools into the path.

Console - root@hostname ~ #

1
2
3
4
cat <<'EOF'>/etc/profile.d/CloudWatch.sh
export AWS_CLOUDWATCH_HOME=/opt/aws/CloudWatch
export PATH=$PATH:$AWS_CLOUDWATCH_HOME/bin
EOF

References

Parts in this series