All Products
Search
Document Center

Edge Security Acceleration:DescribeDcdnDomainLog

Last Updated:Oct 17, 2024

Queries the address where you can download the log data of a domain name.

Operation description

Note
  • If you do not set the StartTime or EndTime parameter, the request returns the data collected in the last 24 hours. If you set both these parameters, the request returns the data collected within the specified time range.********

  • You can call this operation up to 100 times per second per account.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
DomainNamestringYes

The accelerated domain name that you want to query. You can specify only one domain name in each call.

example.com
PageSizelongNo

The number of entries to return on each page.

Valid values: 1 to 1000. Default value: 300. Maximum value: 1000.

300
PageNumberlongNo

The number of the page to return. Pages start from page 1.

Default value: 1.

1
StartTimestringNo

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.

2021-11-07T17:00:00Z
EndTimestringNo

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.

Note The end time must be later than the start time.
2021-11-07T18:00:00Z

Response parameters

ParameterTypeDescriptionExample
object
DomainNamestring

The domain name.

example.com
RequestIdstring

The ID of the request.

95594003-CAC5-5636-AF72-2A094364****
DomainLogDetailsarray<object>

The log information. The log information is indicated by the DomainLogDetail parameter.

DomainLogDetailobject
LogCountlong

The total number of entries returned on the current page.

4
LogInfosarray<object>

The log information. The log information is indicated by the LogInfoDetail parameter.

LogInfoDetailobject
EndTimestring

The end of the time range during which data was queried.

2021-11-07T18:00:00Z
LogSizelong

The size of the log file. Unit: bytes.

192
StartTimestring

The start of the time range during which data was queried.

2021-11-07T17:00:00Z
LogNamestring

The name of the log file.

example.com_2021_11_08_010000_020000.gz
LogPathstring

The path of the log file.

Take note of the Expires field (expiration timestamp) in the response parameter LogPath. If the log download URL expires, you must obtain it again. For more information, see LogPath field.

example.aliyundoc.com /v1.l1cache/105252530/example.com/2021_11_08/example.com_2021_11_08_010000_020000.gz?Expires=1636963354&OSSAccessKeyId=LTAIviCc6zy8****&Signature=u0V6foRfZniHE8i%2BHUdxGOhZsK****
PageInfosobject

The page information. The page information is indicated by the PageInfoDetail parameter.

PageIndexlong

The page number of the returned page.

1
PageSizelong

The number of entries returned per page.

10
Totallong

The total number of entries returned.

4

Examples

Sample success responses

JSONformat

{
  "DomainName": "example.com",
  "RequestId": "95594003-CAC5-5636-AF72-2A094364****",
  "DomainLogDetails": {
    "DomainLogDetail": [
      {
        "LogCount": 4,
        "LogInfos": {
          "LogInfoDetail": [
            {
              "EndTime": "2021-11-07T18:00:00Z",
              "LogSize": 192,
              "StartTime": "2021-11-07T17:00:00Z",
              "LogName": "example.com_2021_11_08_010000_020000.gz",
              "LogPath": "example.aliyundoc.com /v1.l1cache/105252530/example.com/2021_11_08/example.com_2021_11_08_010000_020000.gz?Expires=1636963354&OSSAccessKeyId=LTAIviCc6zy8****&Signature=u0V6foRfZniHE8i%2BHUdxGOhZsK****"
            }
          ]
        },
        "PageInfos": {
          "PageIndex": 1,
          "PageSize": 10,
          "Total": 4
        }
      }
    ]
  }
}

Error codes

HTTP status codeError codeError messageDescription
400InvalidEndTime.MismatchThe specified EndTime is earlier than the StartTime.The end time is earlier than the start time.
400InvalidStartTime.ValueNotSupportedThe StartTime cannot exceed 31 days before the current time.You can query data only within the last 31 days.

For a list of error codes, visit the Service error codes.