All Products
Search
Document Center

ApsaraDB for MongoDB:DescribeErrorLogRecords

Last Updated:Jan 26, 2026

Queries entries in error logs of an ApsaraDB for MongoDB instance.

Operation description

  • This operation is applicable only to general-purpose local-disk and dedicated local-disk instances.

  • You can call this operation up to 30 times per minute. To call this operation at a higher frequency, use a Logstore. For more information, see Manage a Logstore.

Try it now

Try this API in OpenAPI Explorer, no manual signing needed. Successful calls auto-generate SDK code matching your parameters. Download it with built-in credential security for local usage.

Test

RAM authorization

The table below describes the authorization required to call this API. You can define it in a Resource Access Management (RAM) policy. The table's columns are detailed below:

  • Action: The actions can be used in the Action element of RAM permission policy statements to grant permissions to perform the operation.

  • API: The API that you can call to perform the action.

  • Access level: The predefined level of access granted for each API. Valid values: create, list, get, update, and delete.

  • Resource type: The type of the resource that supports authorization to perform the action. It indicates if the action supports resource-level permission. The specified resource must be compatible with the action. Otherwise, the policy will be ineffective.

    • For APIs with resource-level permissions, required resource types are marked with an asterisk (*). Specify the corresponding Alibaba Cloud Resource Name (ARN) in the Resource element of the policy.

    • For APIs without resource-level permissions, it is shown as All Resources. Use an asterisk (*) in the Resource element of the policy.

  • Condition key: The condition keys defined by the service. The key allows for granular control, applying to either actions alone or actions associated with specific resources. In addition to service-specific condition keys, Alibaba Cloud provides a set of common condition keys applicable across all RAM-supported services.

  • Dependent action: The dependent actions required to run the action. To complete the action, the RAM user or the RAM role must have the permissions to perform all dependent actions.

Action

Access level

Resource type

Condition key

Dependent action

dds:DescribeErrorLogRecords

get

*dbinstance

acs:dds:{#regionId}:{#accountId}:dbinstance/{#dbinstanceId}

None None

Request parameters

Parameter

Type

Required

Description

Example

DBInstanceId

string

Yes

The ID of the instance.

Note

If you set this parameter to the ID of a sharded cluster instance, you must also specify the NodeId parameter.

dds-bp12c5b040dc****

NodeId

string

No

The ID of the mongos node or shard node whose error logs you want to query in the instance. If the instance is a sharded cluster instance, you must specify this parameter.

Note

This parameter is valid only when DBInstanceId is set to the ID of a sharded cluster instance.

d-bp128a003436****

RoleType

string

No

The role of the node whose error logs you want to query in the instance. Valid values:

  • primary

  • secondary

Note

If you set the NodeId parameter to the ID of a mongos node, the RoleType parameter must be set to primary.

primary

StartTime

string

Yes

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

2019-01-01T12:10Z

EndTime

string

Yes

The end of the time range to query. The end time must be later than the start time and within 24 hours from the start time. Specify the time in the yyyy-MM-ddTHH:mmZ format. The time must be in UTC.

2019-01-02T12:10Z

DBName

string

No

The name of the database.

mongodbtest

PageSize

integer

No

The number of entries to return on each page. Valid values: 30 to 100.

30

PageNumber

integer

No

The number of the page to return. The value must be an integer that is greater than 0. Default value: 1.

1

ResourceGroupId

string

No

The ID of the resource group. For more information, see View basic information of a resource group.

rg-acfmyiu4ekp****

QueryKeywords

string

No

The keywords used for query. You can enter up to 10 keywords at a time. If you enter multiple keywords, separate the keywords with spaces.

test test1

LogicalOperator

string

No

The logical relationship between multiple keywords. Valid values:

  • or

  • and (default value)

and

Response elements

Element

Type

Description

Example

object

TotalRecordCount

integer

The total number of entries.

1

PageRecordCount

integer

The number of entries returned per page.

1

RequestId

string

The ID of the request.

68BCBEC2-1E66-471F-A1A8-E3C60C0A80B0

PageNumber

integer

The page number of the returned page.

1

Items

object

LogRecords

array<object>

Details about the log entries returned.

object

ConnInfo

string

The connection information of the log entry.

conn18xxxxxx

CreateTime

string

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

2019-02-26T12:09:34Z

Category

string

The category of the log entry. Valid values:

  • NETWORK: network connection log

  • ACCESS: access control log

  • -: general log

  • COMMAND: slow query log

  • SHARDING: sharded cluster log

  • STORAGE: storage engine log

  • CONNPOOL: connection pool log

  • ASIO: asynchronous I/O operation log

  • WRITE: slow update log

NETWORK

Content

string

The content of the log entry.

xxxxxxxx

Id

integer

The ID of the log entry.

1111111111

Engine

string

The database engine.

MongoDB

Examples

Success response

JSON format

{
  "TotalRecordCount": 1,
  "PageRecordCount": 1,
  "RequestId": "68BCBEC2-1E66-471F-A1A8-E3C60C0A80B0",
  "PageNumber": 1,
  "Items": {
    "LogRecords": [
      {
        "ConnInfo": "conn18xxxxxx",
        "CreateTime": "2019-02-26T12:09:34Z",
        "Category": "NETWORK",
        "Content": "xxxxxxxx",
        "Id": 1111111111
      }
    ]
  },
  "Engine": "MongoDB"
}

Error codes

HTTP status code

Error code

Error message

Description

400 InvalidParameterCombination The end time must be greater than the start time The start time must be earlier than the end time.
400 InvalidStartTime.Malformed The Specified parameter StartTime is not valid.
400 InvalidEndTime.Malformed The Specified parameter EndTime is not valid.
403 LogApiFrequencyExceeded Exceeding the allowed frequency of log api.

See Error Codes for a complete list.

Release notes

See Release Notes for a complete list.