All Products
Search
Document Center

AnalyticDB:DescribeDiagnosisRecords

Last Updated:Nov 10, 2025

Queries the diagnostic information about SQL statements that meet a query condition for an AnalyticDB for MySQL cluster.

Operation description

For information about the endpoints of AnalyticDB for MySQL, see Endpoints.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

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:
    • For mandatory resource types, indicate with a prefix of * .
    • 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
adb:DescribeDiagnosisRecordslist
*All Resources
*
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
DBClusterIdstringYes

The Enterprise Edition, Basic Edition, or Data Lakehouse Edition cluster ID.

Note You can call the DescribeDBClusters operation to query the IDs of all AnalyticDB for MySQL clusters within a region.
amv-bp1scs48yc125****
StartTimestringYes

The beginning of the time range to query. Set the time to a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.

Note You can query data only within the last 14 days.
1632931200000
EndTimestringYes

The end of the time range to query. Set the time to a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.

Note
  • The end time must be later than the start time.

  • The maximum time range that can be specified is 24 hours.

1633017540000
RegionIdstringYes

The region ID of the cluster.

Note You can call the DescribeRegions operation to query the most recent region list.
cn-hangzhou
QueryConditionstringYes

The query condition for SQL statements, which can contain the Type, Value, Min, and Max fields. Specify the condition in the JSON format. Type specifies the query dimension. Valid values for Type: maxCost, status, and cost. Value, Min, or Max specifies the query range for the dimension. Valid values:

  • {"Type":"maxCost","Value":"100"}: queries the top 100 most time-consuming SQL statements. Set Value to 100.
  • {"Type":"status","Value":"finished"}: queries the executed SQL statements. You can set Value to running to query the SQL statements that are being executed. You can also set Value to failed to query the SQL statements that failed to be executed.
  • {"Type":"cost","Min":"10","Max":"200"}: queries the SQL statements whose execution duration is in the range of 10 to 200 milliseconds. You can also specify custom values for the Min and Max fields.
{"Type":"status","Value":"finished"}
KeywordstringNo

The query keyword of the SQL statements.

select
MinPeakMemorylongNo

The minimum peak memory of the SQL statements. Unit: bytes.

0
MaxPeakMemorylongNo

The maximum peak memory of the SQL statements. Unit: bytes.

89000000
MinScanSizelongNo

The minimum scan size of the SQL statements. Unit: bytes.

0
MaxScanSizelongNo

The maximum scan size of the SQL statements. Unit: bytes.

1024000000
ResourceGroupstringNo

The resource group to which the SQL statements belong.

Note You can call the DescribeDiagnosisDimensions operation to query the resource groups, database names, usernames, and source IP addresses of the SQL statements that meet a query condition.
user_default
UserNamestringNo

The username that is used to execute the SQL statements. You can call the DescribeDiagnosisDimensions operation to query the resource groups, database names, usernames, and source IP addresses of the SQL statements that meet a query condition.

test_user
DatabasestringNo

The name of the database on which the SQL statements are executed.

Note You can call the DescribeDiagnosisDimensions operation to query the resource groups, database names, usernames, and source IP addresses of the SQL statements that meet a query condition.
adb_demo
ClientIpstringNo

The source IP address.

Note You can call the DescribeDiagnosisDimensions operation to query the resource groups, database names, usernames, and source IP addresses of the SQL statements that meet a query condition.
59.82.XX.XX
OrderstringNo

The order in which to sort the SQL statements by field, which contains the Field and Type fields. Specify the order in the JSON format. Example: [{"Field":"StartTime", "Type": "desc"}]. Fields:

  • Field specifies the field that is used to sort the SQL statements. Valid values:

    • StartTime: the execution start time.
    • Status: the execution status.
    • UserName: the username.
    • Cost: the execution duration.
    • PeakMemory: the peak memory.
    • ScanSize: the amount of data that is scanned.
    • Database: the name of the database.
    • ClientIp: the source IP address.
    • ResourceGroup: the name of the resource group.
    • QueueTime: the amount of time that is consumed for queuing.
    • OutputRows: the number of output rows.
    • OutputDataSize: the amount of output data.
    • ResourceCostRank: the execution duration rank of operators that are used in the SQL statements. This value takes effect only when QueryCondition is set to {"Type":"status","Value":"running"}.
  • Type specifies the sorting order. Valid values (case-insensitive):

    • Desc: descending order.
    • Asc: ascending order.
[{"Field":"StartTime", "Type": "desc" }]
PageNumberintegerNo

The page number. Pages start from page 1. Default value: 1.

1
PageSizeintegerNo

The number of entries per page. Valid values:

  • 30 (default)
  • 50
  • 100
30
LangstringNo

The language of file titles and error messages. Valid values:

  • zh (default): simplified Chinese.
  • en: English.
  • ja: Japanese.
  • zh-tw: traditional Chinese.
zh
PatternIdstringNo

The SQL pattern ID.

5575924945138******

Response parameters

ParameterTypeDescriptionExample
object
PageNumberinteger

The page number. Pages start from page 1. Default value: 1.

1
PageSizeinteger

The number of entries per page. Valid values:

  • 30 (default)
  • 50
  • 100
30
TotalCountinteger

The total number of entries returned.

1
Querysarray<object>

The queried SQL statements.

Itemsobject

The queried SQL statement.

SQLstring

The queried SQL statement.

Note For performance considerations, an SQL statement cannot exceed 5,120 characters in length. Otherwise, the SQL statement is truncated. You can call the DownloadDiagnosisRecords operation to download the information about SQL statements that meet a query condition for an AnalyticDB for MySQL cluster, including the complete SQL statements.
SELECT count(*)\nFROM nation
SQLTruncatedThresholdlong

The maximum length of the SQL statement. 5120 is returned. Unit: characters. SQL statements that exceed this limit are truncated.

5120
Statusstring

The state of the SQL statement. Valid values:

  • running
  • finished
  • failed
finished
OutputDataSizelong

The amount of returned data. Unit: bytes.

9
Costlong

The total execution duration. Unit: milliseconds.

Note This value is the cumulative value of the QueuedTime, TotalPlanningTime, and ExecutionTime parameters.
10
OutputRowslong

The number of rows returned.

1
RcHoststring

The IP address and port number of the AnalyticDB for MySQL frontend node on which the SQL statement is executed.

10.0.XX.XX:3004
ScanSizelong

The amount of scanned data. Unit: bytes.

9
ProcessIdstring

The query ID.

2021093000414401000000023503151******
StartTimelong

The execution start time of the SQL statement. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.

1632933704000
SQLTruncatedboolean

Indicates whether the SQL statement is truncated. Valid values:

  • true
  • false
false
Databasestring

The name of the database on which the SQL statement is executed.

adb_demo
ScanRowslong

The number of rows scanned.

1
ResourceCostRankinteger

The execution duration rank of operators that are used in the SQL statement.

Note This parameter is returned only for SQL statements whose Status parameter is running.
1
ClientIpstring

The source IP address.

59.82.XX.XX
PeakMemorylong

The peak memory. Unit: bytes.

16648
QueueTimelong

The amount of time that is consumed for queuing. Unit: milliseconds.

6
ResourceGroupstring

The resource group to which the SQL statement belongs.

user_default
UserNamestring

The username that is used to execute the SQL statements.

test_user
ExecutionTimelong

The execution duration. Unit: milliseconds.

6
TotalPlanningTimelong

The amount of time that is consumed to generate an execution plan. Unit: milliseconds.

4
EtlWriteRowslong

The number of rows written to the table by an extract-transform-load (ETL) job.

0
TotalStagesinteger

The total number of stages generated.

2
QueryPropertiesarray<object>

The query properties.

Note For information about common properties, see Config and hint configuration parameters.
RequestIdstring

The request ID.

7F88BEFA-CF0B-5C95-8BB1-92EC9F09E40D

Examples

Sample success responses

JSONformat

{
  "PageNumber": 1,
  "PageSize": 30,
  "TotalCount": 1,
  "Querys": [
    {
      "SQL": "SELECT count(*)\\nFROM nation",
      "SQLTruncatedThreshold": 5120,
      "Status": "finished",
      "OutputDataSize": 9,
      "Cost": 10,
      "OutputRows": 1,
      "RcHost": "10.0.XX.XX:3004",
      "ScanSize": 9,
      "ProcessId": "2021093000414401000000023503151******",
      "StartTime": 1632933704000,
      "SQLTruncated": false,
      "Database": "adb_demo",
      "ScanRows": 1,
      "ResourceCostRank": 1,
      "ClientIp": "59.82.XX.XX",
      "PeakMemory": 16648,
      "QueueTime": 6,
      "ResourceGroup": "user_default",
      "UserName": "test_user",
      "ExecutionTime": 6,
      "TotalPlanningTime": 4,
      "EtlWriteRows": 0,
      "TotalStages": 2,
      "QueryProperties": [
        {
          "Name": "max_select_items_count",
          "Value": 1024
        }
      ],
      "PatternId": "-5575924945138******"
    }
  ],
  "RequestId": "7F88BEFA-CF0B-5C95-8BB1-92EC9F09E40D"
}

Error codes

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

Change history

Change timeSummary of changesOperation
2024-10-21The response structure of the API has changedView Change Details
2024-08-30The response structure of the API has changedView Change Details
2023-09-13The internal configuration of the API is changed, but the call is not affectedView Change Details