getAutoScalingActivityLogList
- Print
- PDF
getAutoScalingActivityLogList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Overview
Gets all scaling action logs for the past 6 weeks. The actions in progress will be shown on the top of the list.
The results can be paginated. You can specify each page size (the number of items) and page number.
Request
Request parameters
Parameter | Required | Type | Limitations | Description |
---|---|---|---|---|
activityNoList | N | List | - | List of scaling action (activity) numbers |
autoScalingGroupName | N | String | Min: 1, Max: 255 | Name of the Auto Scaling group to get |
pageNo | N | Integer | Min: 0, Max: 2147483647 | Page number for pagination If it is set to 0 by default, all items are displayed. |
pageSize | N | Integer | Min: 0, Max: 2147483647 | Number of items to be shown per page. If it is set to 0 by default, all items are displayed. |
Response
Response body
Examples
Request example
{AUTOSCALILNG_API_URL}/getAutoScalingActivityLogList
?activityNoList.1=1939
&activityNoList.2=1943
Response example
<getAutoScalingActivityLogListResponse>
<requestId>c9df714e-29b7-42dd-9a38-7ac2be68f191</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>2</totalRows>
<activityLogList>
<activityLog>
<activityNo>1939</activityNo>
<autoScalingGroupName>psw26-auto</autoScalingGroupName>
<status>
<code>INPRG</code>
<codeName>IN_PROGRESS</codeName>
</status>
<statusMessage />
<actionCause>MAINTAIN_INSTANCE_LEVEL psw26-auto</actionCause>
<description>MAINTAIN_INSTANCE_LEVEL psw26-auto</description>
<details>{}</details>
<startTime>2014-02-17T13:28:47+0900</startTime>
</activityLog>
<activityLog>
<activityNo>1943</activityNo>
<autoScalingGroupName>asg-1</autoScalingGroupName>
<status>
<code>SUCCS</code>
<codeName>SUCCESSFUL</codeName>
</status>
<statusMessage />
<actionCause>updateAutoScalingGroup asg-1</actionCause>
<description>updateAutoScalingGroup asg-1</description>
<details>updateAutoScalingGroup {autoScalingGroupNo=273, autoScalingGroupName=asg-1, requestTypeCode=API, zoneNoList=null, launchConfigurationName=null, desiredCapacity=0, oldDesiredCapacity=1, healthCheckTypeCode=SVR, minSize=0, healthCheckGracePeriod=null, clientIp=10.64.49.152, launchConfigurationNo=293, maxSize=0, memberNo=212}</details>
<startTime>2014-02-24T13:47:52+0900</startTime>
<endTime>2014-02-24T13:52:55+0900</endTime>
</activityLog>
</activityLogList>
</getAutoScalingActivityLogListResponse>
Was this article helpful?