Logging Amazon Auto Scaling API Calls with Amazon CloudTrail - Amazon Auto Scaling
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Logging Amazon Auto Scaling API Calls with Amazon CloudTrail

Amazon Auto Scaling is integrated with Amazon CloudTrail, a service that provides a record of actions taken by a user, role, or an Amazon service in Amazon Auto Scaling. CloudTrail captures all API calls for Amazon Auto Scaling as events. The calls captured include calls from the Amazon Auto Scaling console and code calls to the Amazon Auto Scaling API. If you create a trail, you can enable continuous delivery of CloudTrail events to an Amazon S3 bucket, including events for Amazon Auto Scaling. If you don't configure a trail, you can still view the most recent events in the CloudTrail console in Event history. Using the information collected by CloudTrail, you can determine the request that was made to Amazon Auto Scaling, the IP address from which the request was made, who made the request, when it was made, and additional details.

To learn more about CloudTrail, see the Amazon CloudTrail User Guide.

Amazon Auto Scaling Information in CloudTrail

CloudTrail is enabled on your Amazon account when you create the account. When Amazon Auto Scaling activity occurs, that activity is recorded in a CloudTrail event along with other Amazon service events in Event history. You can view, search, and download recent events in your Amazon account. For more information, see Viewing Events with CloudTrail Event History.

For an ongoing record of events in your Amazon account, including events for Amazon Auto Scaling, create a trail. A trail enables CloudTrail to deliver log files to an Amazon S3 bucket. By default, when you create a trail in the console, the trail applies to all Amazon Web Services Regions. The trail logs events from all Regions in the Amazon partition and delivers the log files to the Amazon S3 bucket that you specify. Additionally, you can configure other Amazon Web Services to further analyze and act upon the event data collected in CloudTrail logs. For more information, see the following:

All Amazon Auto Scaling actions are logged by CloudTrail and are documented in the Amazon Auto Scaling API Reference. For example, calls to the CreateScalingPlan, DeleteScalingPlan, and DescribeScalingPlans actions generate entries in the CloudTrail log files.

Every event or log entry contains information about who generated the request. The identity information helps you determine the following:

  • Whether the request was made with root or Amazon Identity and Access Management (IAM) user credentials.

  • Whether the request was made with temporary security credentials for a role or federated user.

  • Whether the request was made by another Amazon service.

For more information, see the CloudTrail userIdentity Element.

Understanding Amazon Auto Scaling Log File Entries

A trail is a configuration that enables delivery of events as log files to an Amazon S3 bucket that you specify. CloudTrail log files contain one or more log entries. An event represents a single request from any source and includes information about the requested action, the date and time of the action, request parameters, and so on. CloudTrail log files aren't an ordered stack trace of the public API calls, so they don't appear in any specific order.

The following example shows a CloudTrail log entry that demonstrates the CreateScalingPlan action.

{ "eventVersion": "1.05", "userIdentity": { "type": "Root", "principalId": "123456789012", "arn": "arn:aws:iam::123456789012:root", "accountId": "123456789012", "accessKeyId": "AKIAIOSFODNN7EXAMPLE", "sessionContext": { "attributes": { "mfaAuthenticated": "false", "creationDate": "2018-08-21T17:05:42Z" } } }, "eventTime": "2018-08-01T23:17:19Z", "eventSource": "autoscaling.amazonaws.com", "eventName": "CreateScalingPlan", "awsRegion": "us-west-2", "sourceIPAddress": "72.21.196.68", "userAgent": "aws-internal/3", "requestParameters": { "applicationSource": { "tagFilters": [ { "key": "TagText", "values": [ "MyApplication" ] } ] }, "scalingInstructions": [ { "resourceId": "autoScalingGroup/MyAutoScalingGroup", "targetTrackingConfigurations": [ { "predefinedScalingMetricSpecification": { "predefinedScalingMetricType": "ASGAverageCPUUtilization" }, "targetValue": 40 } ], "maxCapacity": 10, "serviceNamespace": "autoscaling", "scalableDimension": "autoscaling:autoScalingGroup:DesiredCapacity", "minCapacity": 1 } ], "scalingPlanName": "MyScalingPlan" }, "responseElements": { "scalingPlanVersion": 1 }, "additionalEventData": { "service": "autoscaling-plans" }, "requestID": "0737e2ea-fb2d-11e3-bfd8-99133058e7bb", "eventID": "3fcfb182-98f8-4744-bd45-b38835ab61cb", "eventType": "AwsApiCall", "recipientAccountId": "123456789012" }