Domain name for API request: teo.intl.tencentcloudapi.com.
This API is used to query the time series data of the L7 domain name. Note that there is a delay of about 10 minutes for this API. It is recommended to pull data from 10 minutes before the current time.
A maximum of 100 requests can be initiated per second for this API.
The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.
Parameter Name | Required | Type | Description |
---|---|---|---|
Action | Yes | String | Common Params. The value used for this API: DescribeTimingL7AnalysisData. |
Version | Yes | String | Common Params. The value used for this API: 2022-09-01. |
Region | No | String | Common Params. This parameter is not required. |
StartTime | Yes | Timestamp ISO8601 | The start time. |
EndTime | Yes | Timestamp ISO8601 | The end time. |
MetricNames.N | Yes | Array of String | Metric list. Valid values:. |
ZoneIds.N | No | Array of String | Zone ID set. This parameter is required. |
Interval | No | String | Query period granularity. Valid values: |
Filters.N | No | Array of QueryCondition | Filter criteria. The detailed key values of filter criteria are as follows: 2: china telecom; 26: china unicom; 1046: cmcc; 3947: china tietong; 38: china education network; 43: great wall broadband; 0: other isp. HTTP/1.0; HTTP/1.1; HTTP/2.0; HTTP/3; WebSocket. HTTP: hypertext transfer protocol; HTTPS: HTTPS protocol; QUIC: QUIC protocol. 1XX: 1XX type status codes; 2XX: 2XX type status codes; 3XX: 3XX type status codes; 4XX: 4XX type status codes; 5XX: 5XX type status codes; integers within the range [0,600). Firefox: Firefox browser; Chrome: Chrome browser; Safari: Safari browser; Other: Other browser types; Empty: browser type is Empty; Bot: search engine crawler; MicrosoftEdge: microsoft edge browser; IE: IE browser; Opera: Opera browser; QQBrowser: QQ browser; LBBrowser: LB browser; MaxthonBrowser: Maxthon browser; SouGouBrowser: sogou browser; BIDUBrowser: BIDUBrowser; TaoBrowser: TaoBrowser; UBrowser: UC browser. TV: TV device; Tablet: Tablet device; Mobile: Mobile device; Desktop: Desktop device; Other: Other device type; Empty: device type Empty. Linux: Linux operating system; MacOS: MacOS operating system; Android: Android operating system; IOS: IOS operating system; Windows: Windows operating system; NetBSD: NetBSD; ChromiumOS: ChromiumOS; Bot: Bot: search engine crawler; Other: Other types of operating systems; Empty: operating system is Empty. TLS1.0; TLS1.1; TLS1.2; TLS1.3. 4: IPv4; 6: IPv6. hit: request hits EdgeOne node cache, and resources are provided by node cache. partial cache hit for resources is also recorded as hit. miss: request does not hit EdgeOne node cache, and resources are provided by the origin server. dynamic: requested resources cannot be cached/unconfigured to be cached by node cache, and resources are provided by the origin server. other: unrecognizable cache status. requests responded to by edge functions are recorded as other. |
Area | No | String | Data ownership region. This parameter is deprecated. Please filter data by client region in Filters.country. |
Parameter Name | Type | Description |
---|---|---|
TotalCount | Integer | Total number of query results. |
Data | Array of TimingDataRecord | The list of L7 traffic data recorded over time. Note: This field may return null, indicating that no valid values can be obtained. |
RequestId | String | The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem. |
This example shows you how to query the request count metric data by HTTP protocol version.
POST / HTTP/1.1
Host: teo.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: DescribeTimingL7AnalysisData
<Common request parameters>
{
"EndTime": "2022-08-29T19:17:59+08:00",
"Interval": "day",
"Area": "mainland",
"StartTime": "2022-07-31T00:00:00+08:00",
"MetricNames": [
"l7Flow_request"
],
"Filters": [
{
"Key": "protocol",
"Operator": "equals",
"Value": [
"HTTP/1.0",
"HTTP/1.1"
]
}
],
"ZoneIds": [
"zone-2o7b38ba1hvr"
]
}
{
"Response": {
"RequestId": "141a7ccd-9713-43a2-91d5-1b47692d0609",
"Data": [
{
"TypeKey": "251227260",
"TypeValue": [
{
"Avg": 803,
"Detail": [
{
"Timestamp": 1659139200,
"Value": 0
},
{
"Timestamp": 1661731200,
"Value": 0
}
],
"Max": 7921,
"MetricName": "l7Flow_request",
"Sum": 24918
}
]
}
],
"TotalCount": 1
}
}
TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.
The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.
Error Code | Description |
---|---|
FailedOperation | Operation failed. |
InternalError.ProxyServer | An unknown error occurred in the backend server. |
InvalidParameter | Parameter error. |
InvalidParameterValue | Invalid parameter value. |
LimitExceeded | The quota limit has been reached. |
LimitExceeded.QueryTimeLimitExceeded | Query time limit exceeded. |
OperationDenied | Operation denied. |
ResourceNotFound | The resource doesn’t exist. |
ResourceUnavailable | The resource is unavailable. |
UnauthorizedOperation.CamUnauthorized | CAM is not authorized. |