Queries the monitoring data of an Elastic Compute Service (ECS) instance. The monitoring data can include the vCPU utilization, CPU credits of the burstable instance, amount of received data traffic, amount of sent data traffic, and average bandwidth.
Operation description
Usage notes
Take note of the following items:
Up to 400 monitoring data entries can be returned at a time. Make sure that the
TotalCountvalue does not exceed 400. The value is calculated by using the following formula:TotalCount = (EndTime - StartTime)/Period. If the TotalCount value is greater than 400, theInvalidParameter.TooManyDataQueriederror is returned.You can query the monitoring data in the last 30 days. If the value of
StartTimeis more than 30 days earlier than the current time, an error is returned.In some scenarios, such as when the instance is in the Stopped state, the system cannot obtain the relevant information and specific information may be missing from the returned monitoring data.
You cannot call this operation to obtain the CPU basic monitoring information of an ECS bare metal instance. To obtain the CPU monitoring information of an ECS bare metal instance, install the CloudMonitor agent on the instance. For more information, see InstallCloudMonitor.
Try it now
Test
RAM authorization
|
Action |
Access level |
Resource type |
Condition key |
Dependent action |
|
ecs:DescribeInstanceMonitorData |
get |
*Instance
|
None | None |
Request parameters
|
Parameter |
Type |
Required |
Description |
Example |
| InstanceId |
string |
Yes |
The instance ID. |
i-bp1a36962lrhj4ab**** |
| StartTime |
string |
Yes |
The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. If the value of seconds ( |
2014-10-29T23:00:00Z |
| EndTime |
string |
Yes |
The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. If the value of seconds ( |
2014-10-30T08:00:00Z |
| Period |
integer |
No |
The interval at which to retrieve monitoring data. Unit: seconds. Valid values:
Default value: 60. |
60 |
Response elements
|
Element |
Type |
Description |
Example |
|
object |
|||
| RequestId |
string |
The request ID. |
473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E |
| MonitorData |
object |
||
| InstanceMonitorData |
array<object> |
The monitoring data of the instance. |
|
|
object |
|||
| CPUCreditBalance |
number |
The total number of CPU credits of the burstable instance. |
120 |
| BPSRead |
integer |
The read bandwidth of the cloud disks (system disk and data disks). Unit: Byte/s. |
1000 |
| InternetTX |
integer |
The Internet traffic sent by the instance during the period that is specified by the |
343 |
| CPU |
integer |
The vCPU utilization of the instance. Unit: percent (%). |
2 |
| CPUCreditUsage |
number |
The number of CPU credits consumed by the burstable instance. |
30 |
| IOPSWrite |
integer |
The number of write I/O operations per second on the cloud disks (system disk and data disks). |
200 |
| IntranetTX |
integer |
The internal data traffic sent by the instance during the period that is specified by the |
343 |
| InstanceId |
string |
The instance ID. |
i-bp1a36962lrhj4**** |
| BPSWrite |
integer |
The write bandwidth of the cloud disks (system disk and data disks). Unit: Byte/s. |
13585 |
| CPUNotpaidSurplusCreditUsage |
number |
The unpaid overdrawn CPU credits. |
0.5 |
| CPUAdvanceCreditBalance |
number |
The overdrawn CPU credits of the burstable instance. |
0.4 |
| IOPSRead |
integer |
The number of read I/O operations per second on the cloud disks (system disk and data disks). |
1000 |
| InternetBandwidth |
integer |
The public bandwidth of the instance. Unit: Kbit/s. |
10 |
| InternetRX |
integer |
The Internet traffic received by the instance during the period that is specified by the |
122 |
| TimeStamp |
string |
The timestamp of the monitoring data. |
2014-10-30T05:00:00Z |
| IntranetRX |
integer |
The internal data traffic received by the instance during the period that is specified by the |
122 |
| IntranetBandwidth |
integer |
The internal bandwidth of the instance. Unit: Kbit/s. |
10 |
Examples
Success response
JSON format
{
"RequestId": "473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E",
"MonitorData": {
"InstanceMonitorData": [
{
"CPUCreditBalance": 120,
"BPSRead": 1000,
"InternetTX": 343,
"CPU": 2,
"CPUCreditUsage": 30,
"IOPSWrite": 200,
"IntranetTX": 343,
"InstanceId": "i-bp1a36962lrhj4****",
"BPSWrite": 13585,
"CPUNotpaidSurplusCreditUsage": 0.5,
"CPUAdvanceCreditBalance": 0.4,
"IOPSRead": 1000,
"InternetBandwidth": 10,
"InternetRX": 122,
"TimeStamp": "2014-10-30T05:00:00Z",
"IntranetRX": 122,
"IntranetBandwidth": 10
}
]
}
}
Error response
JSON format
{
"RequestId": "C8B26B44-0189-443E-9816-D951F59623A9",
"MonitorData": {
"InstanceMonitorData": [{
"InstanceId": "Bc0102-23xYm09",
"CPU": 0,
"IntranetRX": 122,
"IntranetTX": 343,
"IntranetFlow": 675,
"IntranetBandwidth": 10,
"InternetRX": 122,
"InternetTX": 343,
"InternetFlow": 675,
"InternetBandwidth": 10,
"IOPSRead": 1000,
"IOPSWrite": 200,
"BPSRead": 1000,
"BPSWrite": 200,
"TimeStamp": "2010-01-21T09:50:23Z"
}]
}
}
Error codes
|
HTTP status code |
Error code |
Error message |
Description |
|---|---|---|---|
| 400 | InvalidStartTime.Malformed | The specified parameter "StartTime" is not valid. | The specified StartTime parameter does not conform to the specification. |
| 400 | InvalidEndTime.Malformed | The specified parameter "EndTime" is not valid. | The specified EndTime parameter is invalid. |
| 400 | InvalidPeriod.ValueNotSupported | The specified parameter "Period" is not valid. | |
| 400 | InvalidStartTime.TooEarly | The specified parameter "StartTime" is too early. | |
| 400 | InvalidParameter.TooManyDataQueried | Too many data queried. | |
| 400 | Throttling | Request was denied due to request throttling. | |
| 400 | InvalidStartTime.ValueNotSupported | The specified parameter StartTime is later than EndTime. | |
| 500 | InternalError | The request processing has failed due to some unknown error. | |
| 404 | InvalidInstanceId.NotFound | The specified InstanceId does not exist. | The specified instanceId is invalid. |
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.