All Products
Search
Document Center

ApsaraDB RDS:DescribeErrorLogs

Last Updated:May 29, 2023

Queries error logs of an ApsaraDB for RDS instance within a specified time range.

Operation Description

Error logs contain the time when they were generated and the error messages.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • The required resource types are displayed in bold characters.
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
rds:DescribeErrorLogsREAD
  • RDS
    acs:rds:{#regionId}:{#accountId}:dbinstance/{#dbinstanceId}
  • rds:ResourceTag
none

Request parameters

ParameterTypeRequiredDescriptionExample
DBInstanceIdstringYes

The ID of the instance.

rm-uf6wjk5xxxxxxx
StartTimestringYes

The start 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 to return on each page. Valid values: 30 to 100. Default value: 30.

30
PageNumberintegerNo

The number of the page to return. Valid values: a non-zero positive integer.

Default value: 1.

1

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The ID of the request.

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

The page number of the returned page.

1
PageRecordCountinteger

The number of error logs on the current page.

30
TotalRecordCountinteger

The total number of error logs.

100
Itemsobject []

The list of items in an error log.

CreateTimestring

The time when the error log 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

{
  "RequestId": "98504E07-BB0E-40FC-B152-E4882615812C",
  "PageNumber": 1,
  "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

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