Queries the queries that are being executed on a cluster.
Debugging
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.
Operation | Access level | Resource type | Condition key | Associated operation |
---|---|---|---|---|
adb:DescribeProcessList | get |
|
| none |
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
DBClusterId | string | Yes | The ID of the cluster. | am-bp11q28kvl688**** |
ShowFull | boolean | No | Specifies whether to show a complete SQL statement. Valid values:
Note
The default value is False.
| True |
RunningTime | integer | No | The execution duration used to filter queries. Queries that take a longer time than the specified execution duration are displayed. Unit: seconds. | 5 |
User | string | No | The name of the user used to filter queries. | test |
Keyword | string | No | The keyword in an SQL statement, which is used to filter queries. Set the value to SELECT. | SELECT |
Order | string | No | The order in which queries are sorted based on the specified fields. Specify this parameter as an ordered JSON array in the
| [ { "Field":"Time","Type":"Desc" }, { "Field":"User", "Type":"Asc" }] |
PageSize | integer | No | The number of entries to return on each page. Default value: 30. Valid values:
| 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 |
Response parameters
Examples
Sample success responses
JSON
format
{
"TotalCount": "1",
"PageSize": "30",
"RequestId": "1AD222E9-E606-4A42-BF6D-8A4442913CEF",
"PageNumber": "1",
"Items": {
"Process": [
{
"StartTime": "2020-11-19T02:48:15Z",
"Time": 11,
"ProcessId": "202011191048151921681492420315100****",
"Host": "192.168.XX.XX:12308",
"DB": "adb_demo",
"Command": "SELECT",
"User": "test",
"Id": 49104,
"Info": "select * from sbtest1,sbtest2,sbtest3,sbtest4"
}
]
}
}
Error codes
HTTP status code | Error code | Error message | Description |
---|---|---|---|
400 | IncorrectModuleVersion | The specified module version does not support this operation. | The specified module version does not support this operation. |
400 | AnalyticDBKernelError | Calling AnalyticDB Kernel error | - |
404 | InvalidDBCluster.NotFound | The DBClusterId provided does not exist in our records. | The specified DBClusterId parameter does not exist. Make sure that the DBClusterId value is valid. |
For a list of error codes, visit the Service error codes.
Change history
Change time | Summary of changes | Operation |
---|---|---|
2023-04-06 | The Error code has changed | View Change Details |