Queries the number of queries per second (QPS) for one or more accelerated domains. You can query data collected within the last 90 days.
- If you do not specify StartTime or EndTime, the data for the last 24 hours is returned. If you specify both StartTime and EndTime, the data within the specified time range is returned.
- You can specify one or more domain names and separate them with commas (,).
Debugging
Request parameters
Parameter | Type | Required | Example | Description |
---|---|---|---|---|
Action | String | Yes | DescribeDcdnDomainQpsData |
The operation that you want to perform. Set the value to DescribeDcdnDomainQpsData. |
DomainName | String | No | example.com |
The accelerated domain name. You can specify multiple accelerated domain names and separate them with commas (,). By default, all accelerated domain names are queried. |
StartTime | String | No | 2017-12-10T20:00:00Z |
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. |
EndTime | String | No | 2017-12-10T21:00:00Z |
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. The end time must be later than the start time. |
Interval | String | No | 300 |
The data collection interval. Unit: second. The value varies based on the values of the StartTime and EndTime parameters. If you do not specify this parameter, the default value is used.
|
IspNameEn | String | No | unicom |
The name of the Internet service provider (ISP). To query ISPs, call the DescribeCdnRegionAndIsp operation. If you do not set this parameter, the data of the accelerated domains for all ISPs is returned. |
LocationNameEn | String | No | beijing |
The name of the region. To query regions, call the DescribeCdnRegionAndIsp operation. If you do not set this parameter, the data of the accelerated domains in all regions is returned. |
Response parameters
Parameter | Type | Example | Description |
---|---|---|---|
DataInterval | String | 300 |
The data collection interval. Unit: second. |
DomainName | String | test.com |
The name of the accelerated domain for which the data was returned. |
EndTime | String | 2017-12-10T21:00:00Z |
The end of the time range during which the data was returned. |
QpsDataPerInterval | Array |
The QPS at each interval. |
|
DataModule | |||
Acc | Float | 100 |
The total number of queries. |
DynamicHttpAcc | Float | 0 |
The number of queries for dynamic content delivery over HTTP. |
DynamicHttpQps | Float | 0 |
The QPS for dynamic content delivery over HTTP. |
DynamicHttpsAcc | Float | 0 |
The number of queries for dynamic content delivery over HTTPS. |
DynamicHttpsQps | Float | 0 |
The QPS for dynamic content delivery over HTTPS. |
Qps | Float | 0.56 |
The total QPS. |
StaticHttpAcc | Float | 0 |
The number of queries for static content delivery over HTTP. |
StaticHttpQps | Float | 0 |
The QPS for static content delivery over HTTP. |
StaticHttpsAcc | Float | 0 |
The number of queries for static content delivery over HTTPS. |
StaticHttpsQps | Float | 0 |
The QPS for static content delivery over HTTPS. |
TimeStamp | String | 2017-12-10T21:00:00Z |
The timestamp of the data returned. |
RequestId | String | BEA5625F-8FCF-48F4-851B-CA63946DA664 |
The ID of the request. |
StartTime | String | 2017-12-10T20:00:00Z |
The beginning of the time range during which the data was returned. |
Examples
Sample requests
http://dcdn.aliyuncs.com/?Action=DescribeDcdnDomainQpsData
&DomainName=example.com
&StartTime=2017-12-10T20:00:00Z
&EndTime=2017-12-10T21:00:00Z
&<Common request parameters>
Sample success responses
XML
format
<DescribeDcdnDomainQpsDataResponse>
<QpsDataPerInterval>
<DataModule>
<TimeStamp>2017-12-10T21:00:00Z</TimeStamp>
<Qps>0.56</Qps>
<DynamicHttpQps>0.28</DynamicHttpQps>
<DynamicHttpsQps>0.28</DynamicHttpsQps>
<StaticHttpQps>0</StaticHttpQps>
<StaticHttpsQps>0</StaticHttpsQps>
<Acc>100</Acc>
<DynamicHttpAcc>50</DynamicHttpAcc>
<DynamicHttpsAcc>50</DynamicHttpsAcc>
<StaticHttpAcc>0</StaticHttpAcc>
<StaticHttpsAcc>0</StaticHttpsAcc>
</DataModule>
</QpsDataPerInterval>
<DomainName>test.com</DomainName>
<DataInterval>300</DataInterval>
<RequestId>BEA5625F-8FCF-48F4-851B-CA63946DA664</RequestId>
<StartTime>2017-12-10T20:00:00Z</StartTime>
<EndTime>2017-12-10T21:00:00Z</EndTime>
</DescribeDcdnDomainQpsDataResponse>
JSON
format
{
"QpsDataPerInterval": {
"DataModule": [
{
"TimeStamp": "2017-12-10T21:00:00Z",
"Qps": 0.56,
"DynamicHttpQps": 0.28,
"DynamicHttpsQps": 0.28,
"StaticHttpQps": 0,
"StaticHttpsQps": 0,
"Acc": 100,
"DynamicHttpAcc": 50,
"DynamicHttpsAcc": 50,
"StaticHttpAcc": 0,
"StaticHttpsAcc": 0
}
]
},
"DomainName": "test.com",
"DataInterval": "300",
"RequestId": "BEA5625F-8FCF-48F4-851B-CA63946DA664",
"StartTime": "2017-12-10T20:00:00Z",
"EndTime": "2017-12-10T21:00:00Z"
}
Error codes
HttpCode | Error code | Error message | Description |
---|---|---|---|
400 | MissingTimeParameter | The StartTime and EndTime must be both specified. | The error message returned because the StartTime and EndTime parameters must be specified at the same time. |
400 | InvalidEndTime.Malformed | The specified EndTime is invalid. | The error message returned because the format of the specified EndTime parameter is invalid. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time must be in UTC. |
400 | InvalidEndTime.Mismatch | The specified EndTime is earlier than the StartTime. | The error message returned because the specified EndTime parameter is earlier than the specified StartTime parameter. |
400 | InvalidStartTime.ValueNotSupported | The specified StartTime is invalid. | The error message returned because the specified StartTime parameter is invalid. |
For a list of error codes, visit the API Error Center.