Monitoring Memory and Disk Metrics for Amazon EC2 Linux Instances
The Amazon CloudWatch Monitoring Scripts for Amazon Elastic Compute Cloud (Amazon EC2) Linux-based instances demonstrate how to produce and consume Amazon CloudWatch custom metrics. These sample Perl scripts comprise a fully functional example that reports memory, swap, and disk space utilization metrics for a Linux instance. You can download the Amazon CloudWatch Monitoring Scripts for Linux from the AWS sample code library.
Important
These scripts are examples only. They are provided as is and are not supported.
Standard Amazon CloudWatch usage charges for custom metrics apply to your use of these scripts. For more information, see the Amazon CloudWatch pricing page.
Contents
Supported Systems
These monitoring scripts are intended for use with Amazon EC2 instances running Linux. The scripts have been tested on instances using the following Amazon Machine Images (AMIs), both 32-bit and 64-bit versions:
Amazon Linux 2014.09.2
Red Hat Enterprise Linux 6.6
SUSE Linux Enterprise Server 12
Ubuntu Server 14.04
You can use EC2Config on Amazon EC2 instances running Windows to monitor memory and disk metrics by sending this data to CloudWatch Logs. For more information, see Sending Performance Counters to CloudWatch and Logs to CloudWatch Logs in the Amazon EC2 User Guide for Windows Instances.
Package Contents
The package for the monitoring scripts contains the following files:
CloudWatchClient.pm—Shared Perl module that simplifies calling Amazon CloudWatch from other scripts.
mon-put-instance-data.pl—Collects system metrics on an Amazon EC2 instance (memory, swap, disk space utilization) and sends them to Amazon CloudWatch.
mon-get-instance-stats.pl—Queries Amazon CloudWatch and displays the most recent utilization statistics for the EC2 instance on which this script is executed.
awscreds.template—File template for AWS credentials that stores your access key ID and secret access key.
LICENSE.txt—Text file containing the Apache 2.0 license.
NOTICE.txt—Copyright notice.
Prerequisites
With some versions of Linux, you must install additional modules before the monitoring scripts will work.
Amazon Linux AMI
If you are running Amazon Linux AMI version 2014.03 or later, you must install additional Perl modules.
To install the required packages
Log on to your instance. For more information, see Connect to Your Linux Instance.
At a command prompt, install packages as follows:
sudo yum install perl-Switch perl-DateTime perl-Sys-Syslog perl-LWP-Protocol-https
Red Hat Enterprise Linux
You must install additional Perl modules.
To install the required packages on Red Hat Enterprise Linux
Log on to your instance. For more information, see Connect to Your Linux Instance.
At a command prompt, install packages as follows:
sudo yum install perl-Switch perl-DateTime perl-Sys-Syslog perl-LWP-Protocol-https perl-Digest-SHA -y sudo yum install zip unzip
SUSE Linux Enterprise Server
You must install additional Perl modules.
To install the required packages on SUSE
Log on to your instance. For more information, see Connect to Your Linux Instance.
At a command prompt, install packages as follows:
sudo zypper install perl-Switch perl-DateTime sudo zypper install –y "perl(LWP::Protocol::https)"
Ubuntu Server
You must configure your server as follows.
To install the required packages on Ubuntu
Log on to your instance. For more information, see Connect to Your Linux Instance.
At a command prompt, install packages as follows:
sudo apt-get update sudo apt-get install unzip sudo apt-get install libwww-perl libdatetime-perl
Getting Started
The following steps show you how to download, uncompress, and configure the CloudWatch Monitoring Scripts on an EC2 Linux instance.
To download, install, and configure the monitoring scripts
At a command prompt, move to a folder where you want to store the monitoring scripts and run the following command to download them:
curl http://aws-cloudwatch.s3.amazonaws.com/downloads/CloudWatchMonitoringScripts-1.2.1.zip -ORun the following commands to install the monitoring scripts you downloaded:
unzip CloudWatchMonitoringScripts-1.2.1.zip rm CloudWatchMonitoringScripts-1.2.1.zip cd aws-scripts-monEnsure that the scripts have permission to perform CloudWatch operations using one of the following options:
If you associated an AWS Identity and Access Management (IAM) role with your instance, verify that it grants permissions to perform the following operations:
cloudwatch:PutMetricData
cloudwatch:GetMetricStatistics
cloudwatch:ListMetrics
ec2:DescribeTags
Specify your AWS credentials in a credentials file. First, copy the
awscreds.templatefile included with the monitoring scripts toawscreds.confas follows:cp awscreds.template awscreds.confAdd the following content to this file:
AWSAccessKeyId=my-access-key-idAWSSecretKey=my-secret-access-keyFor information about how to view your AWS credentials, see Understanding and Getting Your Security Credentials in the Amazon Web Services General Reference.
mon-put-instance-data.pl
This script collects memory, swap, and disk space utilization data on the current system. It then makes a remote call to Amazon CloudWatch to report the collected data as custom metrics.
Options
| Name | Description |
|---|---|
|
|
Collects and sends the MemoryUtilization metrics in percentages. This option reports only memory allocated by applications and the operating system, and excludes memory in cache and buffers. |
|
|
Collects and sends the MemoryUsed metrics, reported in megabytes. This option reports only memory allocated by applications and the operating system, and excludes memory in cache and buffers. |
|
|
Collects and sends the MemoryAvailable metrics, reported in megabytes. This option reports memory available for use by applications and the operating system. |
|
|
Collects and sends SwapUtilization metrics, reported in percentages. |
|
|
Collects and sends SwapUsed metrics, reported in megabytes. |
|
|
Selects the disk on which to report. PATH can specify a mount point or any file located on a mount point for
the filesystem that needs to be reported. For selecting multiple disks,
specify a To select a disk for the filesystems mounted on
|
|
|
Collects and sends the DiskSpaceUtilization metric for the selected disks. The metric is reported in percentages. Note that the disk utilization metrics calculated by this script differ from the values calculated by the df -k -l command. If you find the values from df -k -l more useful, you can change the calculations in the script. |
|
|
Collects and sends the DiskSpaceUsed metric for the selected disks. The metric is reported by default in gigabytes. Due to reserved disk space in Linux operating systems, disk space used and disk space available might not accurately add up to the amount of total disk space. |
|
|
Collects and sends the DiskSpaceAvailable metric for the selected disks. The metric is reported in gigabytes. Due to reserved disk space in the Linux operating systems, disk space used and disk space available might not accurately add up to the amount of total disk space. |
|
|
Specifies units in which to report memory usage. If not specified, memory is reported in megabytes. UNITS may be one of the following: bytes, kilobytes, megabytes, gigabytes. |
|
|
Specifies units in which to report disk space usage. If not specified, disk space is reported in gigabytes. UNITS may be one of the following: bytes, kilobytes, megabytes, gigabytes. |
|
|
Provides the location of the file containing AWS credentials. This parameter cannot be used with the
|
|
|
Specifies the AWS access key ID to use to identify the caller. Must be
used together with the |
|
|
Specifies the AWS secret access key to use to sign the request to
CloudWatch. Must be used together with the |
|
|
Specifies the IAM role used to provide AWS credentials. The value
Do not use this option with the |
|
|
Adds aggregated metrics for instance type, AMI ID, and overall for the
region. The value |
|
|
Adds aggregated metrics for the Auto Scaling group. The value
|
|
|
Performs a test run of the script that collects the metrics, prepares a complete HTTP request, but does not actually call CloudWatch to report the data. This option also checks that credentials are provided. When run in verbose mode, this option outputs the metrics that will be sent to CloudWatch. |
|
|
Use this option when calling the script from cron. When this option is used, all diagnostic output is suppressed, but error messages are sent to the local system log of the user account. |
|
|
Displays detailed information about what the script is doing. |
|
|
Displays usage information. |
|
|
Displays the version number of the script. |
Examples
The following examples assume that you provided an IAM role or awscreds.conf file.
Otherwise, you must provide credentials using the --aws-access-key-id and --aws-secret-key
parameters for these commands.
To perform a simple test run without posting data to CloudWatch
./mon-put-instance-data.pl --mem-util --verify --verboseTo collect all available memory metrics and send them to CloudWatch
./mon-put-instance-data.pl --mem-util --mem-used --mem-availTo set a cron schedule for metrics reported to CloudWatch
Start editing the crontab using the following command:
crontab -eAdd the following command to report memory and disk space utilization to CloudWatch every five minutes:
*/5 * * * * ~/aws-scripts-mon/mon-put-instance-data.pl --mem-util --disk-space-util --disk-path=/ --from-cronIf the script encounters an error, the script will write the error message in the system log.
To collect aggregated metrics for an Auto Scaling group and send them to Amazon CloudWatch without reporting individual instance metrics
./mon-put-instance-data.pl --mem-util --mem-used --mem-avail --auto-scaling=onlyTo collect aggregated metrics for instance type, AMI ID and region, and send them to Amazon CloudWatch without reporting individual instance metrics
./mon-put-instance-data.pl --mem-util --mem-used --mem-avail --aggregated=onlymon-get-instance-stats.pl
This script queries CloudWatch for statistics on memory, swap, and disk space metrics within the time interval provided using the number of most recent hours. This data is provided for the Amazon EC2 instance on which this script is executed.
Options
| Name | Description |
|---|---|
|
|
Specifies the number of recent hours to report on, as represented by
|
|
|
Provides the location of the file containing AWS credentials. |
|
|
Specifies the AWS access key ID to use to identify the caller. Must be
used together with the |
|
|
Specifies the AWS secret access key to use to sign the request to
CloudWatch. Must be used together with the |
|
|
Specifies the IAM role used to provide AWS credentials. The value
Do not use this option with the |
|
|
Performs a test run of the script that collects the metrics, prepares a complete HTTP request, but does not actually call CloudWatch to report the data. This option also checks that credentials are provided. When run in verbose mode, this option outputs the metrics that will be sent to CloudWatch. |
|
|
Displays detailed information about what the script is doing. |
|
|
Displays usage information. |
|
|
Displays the version number of the script. |
Example
To get utilization statistics for the last 12 hours, run the following command:
./mon-get-instance-stats.pl --recent-hours=12The following is an example response:
Instance metric statistics for the last 12 hours.
CPU Utilization
Average: 1.06%, Minimum: 0.00%, Maximum: 15.22%
Memory Utilization
Average: 6.84%, Minimum: 6.82%, Maximum: 6.89%
Swap Utilization
Average: N/A, Minimum: N/A, Maximum: N/A
Disk Space Utilization on /dev/xvda1 mounted as /
Average: 9.69%, Minimum: 9.69%, Maximum: 9.69%Viewing Your Custom Metrics in the Console
After you successfully run the mon-put-instance-data.pl script, you can
view your custom metrics in the Amazon CloudWatch console.
To view custom metrics
Run
mon-put-instance-data.plas described previously.Open the CloudWatch console at https://console.aws.amazon.com/cloudwatch/.
Choose View Metrics.
For Viewing, your custom metrics posted by the script are displayed with the prefix
System/Linux.
Troubleshooting
The CloudWatchClient.pm module caches instance metadata locally. If you create an AMI from an instance where you have run the monitoring scripts, any instances launched from the AMI within the cache TTL (default: six hours, 24 hours for Auto Scaling groups) emit metrics using the instance ID of the original instance. After the cache TTL time period passes, the script retrieves fresh data and the monitoring scripts use the instance ID of the current instance. To immediately correct this, remove the cached data using the following command:
rm /var/tmp/aws-mon/instance-id
