Monitor Amazon EC2 API requests using Amazon CloudWatch
You can monitor Amazon EC2 API requests using Amazon CloudWatch, which collects raw data and processes it into readable, near real-time metrics. These metrics provide a simple way to track the usage and outcomes of the Amazon EC2 API operations over time. This information gives you a better perspective on how your web applications are performing, and enables you to identify and diagnose a variety of issues. You can also set alarms that watch for certain thresholds, and send notifications or take specific actions when those thresholds are met.
For more information about CloudWatch, see the Amazon CloudWatch User Guide.
Important
Amazon EC2 API metrics is an opt-in feature. You must request access to this feature. For more information, see Enable Amazon EC2 API metrics.
Contents
Enable Amazon EC2 API metrics
Use the following procedure to request access to this feature for your AWS account.
To request access to this feature
-
Open AWS Support Center
. -
Choose Create case.
-
Choose Account and billing.
-
For Service, choose General Info and Getting Started.
-
For Category, choose Using AWS & Services.
-
Choose Next step: Additional information.
-
For Subject, enter
Request access to Amazon EC2 API metrics
. -
For Description, enter
Please grant my account access to Amazon EC2 API metrics. Related page: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/monitor.html
. Also include the Region where you need access. -
Choose Next step: Solve now or contact us.
-
On the Contact us tab, choose your preferred contact language and method of contact.
-
Choose Submit.
Amazon EC2 API metrics and dimensions
Metrics
The Amazon EC2 API metrics are contained in the AWS/EC2/API
namespace. The
following tables list the metrics available for Amazon EC2 API requests.
Metric | Description |
---|---|
|
The number of failed API requests caused by client errors. These errors are usually caused by something the client did, such as specifying an incorrect or invalid parameter in the request, or using an action or resource on behalf of a user that does not have permission to use the action or resource. Unit: Count |
|
The number of times the maximum request rate permitted by the Amazon EC2 APIs has been exceeded for your account. Amazon EC2 API requests are throttled to help maintain the performance of the service. If
your requests have been throttled, you get the Unit: Count |
|
The number of failed API requests caused by internal server errors. These errors are usually caused by an AWS server-side error, exception, or failure. Unit: Count |
|
The number of successful API requests. Unit: Count |
Dimensions
The Amazon EC2 metric data can be filtered across all EC2 API actions. For more information about dimensions, see Amazon CloudWatch concepts.
Metric data retention
Amazon EC2 API metrics are sent to CloudWatch at 1-minute intervals. CloudWatch retains metric data as follows:
Data points with a period of 60 seconds (1 minute) are available for 15 days.
Data points with a period of 300 seconds (5 minutes) are available for 63 days.
Data points with a period of 3600 seconds (1 hour) are available for 455 days (15 months).
Monitoring requests made on your behalf
API requests made by AWS services on your behalf, such as requests made by service-linked roles, do not count toward your API throttling limits and they do not send metrics to Amazon CloudWatch for your account. These requests cannot be monitored using CloudWatch.
API requests made on your behalf by third-party service providers do count toward your API throttling limits and they do send metrics to Amazon CloudWatch for your account. These requests can be monitored using CloudWatch.
Billing
Standard CloudWatch pricing and charges apply. No additional charges are applied for using
the Amazon EC2 API metrics. For more information, see Amazon CloudWatch Pricing
Working with Amazon CloudWatch
Viewing CloudWatch metrics
Use the following procedure to view the Amazon EC2 API metrics.
Prerequisite
You must enable access to Amazon EC2 API metrics for your account. For more information, see Enable Amazon EC2 API metrics.
To view the Amazon EC2 API metrics using the console
Open the CloudWatch console at https://console.aws.amazon.com/cloudwatch/
. In the navigation pane, chose Metrics, All metrics.
On the Browse tab, choose the EC2/API metric namespace.
To view the metrics, select the metric dimension.
To view Amazon EC2 API metrics using the command line
Use one of the following commands:
-
list-metrics (AWS CLI)
aws cloudwatch list-metrics --namespace "AWS/EC2/API"
-
Get-CWMetricList (AWS Tools for Windows PowerShell)
Get-CWMetricList -Namespace "AWS/EC2/API"
Creating CloudWatch alarms
You can create a CloudWatch alarm that sends an Amazon SNS message when the alarm changes state. An alarm watches a single metric over a time period that you specify. It sends a notification to an SNS topic based on the value of the metric relative to a given threshold over a number of time periods.
For example, you can create an alarm that monitors the number of DescribeInstances API requests that fail due to server-side errors. The following alarm sends an email notification when the number of DescribeInstances API request failures reach a threshold of 10 server-side errors during a 5-minute period.
Prerequisite
You must enable access to the Amazon EC2 API metrics for your account. For more information, see Enable Amazon EC2 API metrics.
To create an alarm for Amazon EC2 DescribeInstances API request server errors
Open the CloudWatch console at https://console.aws.amazon.com/cloudwatch/
. -
In the navigation pane, choose Alarms, All alarms.
-
Choose Create alarm.
-
Choose Select metric, and the specify the following:
-
Choose EC2/API.
-
Choose Per-Action Metrics.
-
Select the check box next to DescribeInstances that is in the same row as the ServerErrors metric name.
-
Choose Select metric.
-
-
The Specify metric and conditions page appears, showing a graph and other information about the metric and statistic that you selected.
-
Under Metric, specify the following:
-
For Statistic, choose Sum.
-
For Period, verify that 5 minutes is selected.
-
-
Under Conditions, specify the following:
-
For Threshold type, choose Static.
-
For Whenever ServerErrors is, choose Greater/Equal >=.
-
For than..., enter 10.
-
-
Choose Next.
-
-
The Configure actions page appears.
-
Under Notification, specify the following:
-
For Alam state trigger, choose In alarm.
-
For Select an SNS topic, choose Select an existing SNS topic or Create new topic, and complete the required fields for the notification.
-
Choose Next.
-
-
-
The Add name and description page appears.
-
For Alarm name, enter a name for your alarm. The name must contain only ASCII characters.
-
For Alarm description, enter an optional description for your alarm.
-
Choose Next.
-
-
The Preview and create page appears. Verify that the information is correct, and then choose Create alarm.
For more information, see Using Amazon CloudWatch alarms in the Amazon CloudWatch User Guide.