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

  • 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.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer. OpenAPI Explorer dynamically generates the sample code of the operation for different SDKs.

Request parameters

Parameter Type Required Example Description
Action String Yes DescribeErrorLogRecords

The operation that you want to perform. Set the value to DescribeErrorLogRecords.

RegionId String No cn-hangzhou

The region ID of the instance. You can call the DescribeDBInstanceAttribute operation to query the region ID of the instance.

DBInstanceId String Yes dds-bp12c5b040dc****

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.
NodeId String No d-bp128a003436****

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.
RoleType String No primary

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.
StartTime String Yes 2019-01-01T12:10Z

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

EndTime String Yes 2019-01-02T12:10Z

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.

DBName String No mongodbtest

The name of the database.

PageSize Integer No 30

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

PageNumber Integer No 1

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

ResourceGroupId String No rg-acfmyiu4ekp****

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

Response parameters

Parameter Type Example Description
TotalRecordCount Integer 1

The total number of entries.

PageRecordCount Integer 1

The number of entries returned per page.

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

The ID of the request.

PageNumber Integer 1

The page number of the returned page.

Items Array of LogRecords

Details about the log entries returned.

LogRecords
ConnInfo String conn18xxxxxx

The connection information of the log entry.

CreateTime String 2019-02-26T12:09:34Z

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.

Category String NETWORK

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
Content String xxxxxxxx

The content of the log entry.

Id Integer 1111111111

The ID of the log entry.

Engine String MongoDB

The database engine.

Examples

Sample requests

http(s)://mongodb.aliyuncs.com/?Action=DescribeErrorLogRecords
&StartTime=2019-01-01T12:10Z
&EndTime=2019-01-02T12:10Z
&DBInstanceId=dds-bp12c5b040dc****
&<Common request parameters>

Sample success responses

XML format

HTTP/1.1 200 OK
Content-Type:application/xml

<?xml version="1.0" encoding="UTF-8" ?>
<DescribeErrorLogRecordsResponse>
	<Items>
		<LogRecords>
			<Category>NETWORK</Category>
			<CreateTime>2019-02-26T12:09:34Z</CreateTime>
			<ConnInfo>conn18xxxxxx</ConnInfo>
			<Content>xxxxxxxx</Content>
		</LogRecords>
	</Items>
	<PageNumber>1</PageNumber>
	<TotalRecordCount>2</TotalRecordCount>
	<RequestId>68BCBEC2-1E66-471F-A1A8-E3C60C0A80B0</RequestId>
</DescribeErrorLogRecordsResponse>

JSON format

HTTP/1.1 200 OK
Content-Type:application/json

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

Error codes

For a list of error codes, visit the API Error Center.