All Products
Search
Document Center

ApsaraDB RDS:DescribeSQLLogReportList

Last Updated:May 29, 2023

You can call the DescribeSQLLogReportList operation to query SQL log reports.

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:DescribeSQLLogReportListRead
  • RDS
    acs:rds:{#regionId}:{#accountId}:dbinstance/{#dbinstanceId}
  • rds:ResourceTag
none

Request parameters

ParameterTypeRequiredDescriptionExample
DBInstanceIdstringYes

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

rm-uf6wjk5xxxxxxx
StartTimestringYes

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-03-13T16:00:00Z
EndTimestringYes

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.

NoteThe end time must be later than the start time.
2021-03-18T16:00:00Z
PageSizeintegerNo

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

  • 30
  • 50
  • 100

Default value: 30.

30
PageNumberintegerNo

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

Default value: 1.

1

Response parameters

ParameterTypeDescriptionExample
object
RequestIdstring

The ID of the request.

08A3B71B-FE08-4B03-974F-CC7EA6DB1828
PageNumberinteger

The page number of the returned page.

1
PageRecordCountinteger

The number of reports on the current page.

30
TotalRecordCountinteger

The total number of records returned.

60
Itemsobject []

An array that consists of SQL log reports.

ReportTimestring

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

2019-03-27T16:00:00Z
LatencyTopNItemsobject []

An array that consists of SQL statements executed with the highest latency.

SQLTextstring

The SQL statement returned.

NoteOnly the first 128 characters of the SQL statement are returned. In addition, only the SQL statements that take more than 100 ms to execute are returned.
SELECT * FROM table_name;
SQLExecuteTimeslong

The number of times that the SQL statement is executed.

5
AvgLatencylong

The average time that is required to execute the SQL statement. Unit: milliseconds.

500
QPSTopNItemsobject []

An array that consists of SQL statements executed the most frequently.

SQLExecuteTimeslong

The number of times that the SQL statement is executed.

5
SQLTextstring

The SQL statement returned.

NoteOnly the first 128 characters of the SQL statement are returned. In addition, only the SQL statements that take more than 5 ms to execute are returned.
SELECT * FROM table_name;

Examples

Sample success responses

JSONformat

{
	"TotalRecordCount": "60",
	"PageRecordCount": "30",
	"RequestId": "08A3B71B-FE08-4B03-974F-CC7EA6DB1828\t",
	"PageNumber": "1",
	"Items": {
		"Item": [{
			"ReportTime": "2019-03-27T16:00:00Z",
			"LatencyTopNItems": {
				"LatencyTopNItem": [{
					"AvgLatency": "500",
					"SQLExecuteTimes": "5",
					"SQLText": "SELECT * FROM table_name;"
				}]
			},
			"QPSTopNItems": {
				"QPSTopNItem": [{
					"SQLExecuteTimes": "5",
					"SQLText": "SELECT * FROM table_name;"
				}]
			}
		}]
	}
}

XMLformat

<DescribeSQLLogReportListResponse>
    <TotalRecordCount>60</TotalRecordCount>
    <PageRecordCount>30</PageRecordCount>
    <RequestId>08A3B71B-FE08-4B03-974F-CC7EA6DB1828	</RequestId>
    <PageNumber>1</PageNumber>
    <Items>
        <Item>
            <ReportTime>2019-03-27T16:00:00Z</ReportTime>
            <LatencyTopNItems>
                <LatencyTopNItem>
                    <AvgLatency>500</AvgLatency>
                    <SQLExecuteTimes>5</SQLExecuteTimes>
                    <SQLText>SELECT * FROM table_name;</SQLText>
                </LatencyTopNItem>
            </LatencyTopNItems>
            <QPSTopNItems>
                <QPSTopNItem>
                    <SQLExecuteTimes>5</SQLExecuteTimes>
                    <SQLText>SELECT * FROM table_name;</SQLText>
                </QPSTopNItem>
            </QPSTopNItems>
        </Item>
    </Items>
</DescribeSQLLogReportListResponse>

Error codes

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