All Products
Search
Document Center

ApsaraDB RDS:DescribeErrorLogs

Last Updated:Jul 05, 2024

Queries the error logs of an instance over a specific time range.

Operation description

Supported database engines

  • MySQL
  • PostgreSQL
  • SQL Server
  • MariaDB

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

There is currently no authorization information disclosed in the API.

Request parameters

ParameterTypeRequiredDescriptionExample
DBInstanceIdstringYes

The instance ID. You can call the DescribeDBInstances operation to query the instance ID.

rm-uf6wjk5xxxxxxx
StartTimestringYes

The beginning of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mmZ format. The time must be in UTC.

2011-05-01T20:10Z
EndTimestringYes

The end of the time range to query. The end time must be later than the start time. The time span between the start time and the end time must be less than 31 days. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mmZ format. The time must be in UTC.

2011-05-30T20:10Z
PageSizeintegerNo

The number of entries per page. Valid values: 30 to 100. Default value: 30.

30
PageNumberintegerNo

The page number. Pages start from page 1.

Default value: 1.

1

Response parameters

ParameterTypeDescriptionExample
object

The response parameters.

PageNumberinteger

The page number.

1
RequestIdstring

The request ID.

98504E07-BB0E-40FC-B152-E4882615812C
PageRecordCountinteger

The number of error logs on the current page.

30
TotalRecordCountinteger

The total number of entries returned.

100
Itemsarray<object>

Details about the log entries returned.

object
CreateTimestring

The time when the error log entry was generated. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.

2011-05-30T12:11:04Z
ErrorInfostring

The error log information.

spid52 DBCC TRACEON 3499, server process ID (SPID) 52. This is an informational message only; no user action is required

Examples

Sample success responses

JSONformat

{
  "PageNumber": 1,
  "RequestId": "98504E07-BB0E-40FC-B152-E4882615812C",
  "PageRecordCount": 30,
  "TotalRecordCount": 100,
  "Items": {
    "ErrorLog": [
      {
        "CreateTime": "2011-05-30T12:11:04Z",
        "ErrorInfo": "spid52 DBCC TRACEON 3499, server process ID (SPID) 52. This is an informational message only; no user action is required"
      }
    ]
  }
}

Error codes

HTTP status codeError codeError messageDescription
400InvalidSearchTimeRangesearch time range cannot be longer than a month.The interval between the end time that is specified by the EndTime parameter and the start time that is specified by the StartTime parameter must be less than 31 days. Check the values of these parameters.
400IO.ExceptionIO exception, retry later.An I/O error occurred.

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