全部产品
Search
文档中心

云数据库 RDS:DescribeSlowLogRecords - 查看慢日志明细

更新时间:Apr 17, 2024

该接口用于查看实例的慢日志明细。

接口说明

适用引擎

  • RDS MySQL
  • RDS PostgreSQL
  • RDS SQL Server
  • RDS MariaDB

注意事项

  • 本接口的返回参数每分钟更新一次。
  • 2023 年 12 月 13 日起,由于慢 SQL 的模板化算法优化,调用本接口时,SQLHash 字段的值将发生变更。详情请参见【通知】慢 SQL 的模板化算法优化

调试

您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。

授权信息

下表是API对应的授权信息,可以在RAM权限策略语句的Action元素中使用,用来给RAM用户或RAM角色授予调用此API的权限。具体说明如下:

  • 操作:是指具体的权限点。
  • 访问级别:是指每个操作的访问级别,取值为写入(Write)、读取(Read)或列出(List)。
  • 资源类型:是指操作中支持授权的资源类型。具体说明如下:
    • 对于必选的资源类型,用背景高亮的方式表示。
    • 对于不支持资源级授权的操作,用全部资源表示。
  • 条件关键字:是指云产品自身定义的条件关键字。
  • 关联操作:是指成功执行操作所需要的其他权限。操作者必须同时具备关联操作的权限,操作才能成功。
操作访问级别资源类型条件关键字关联操作
rds:DescribeSlowLogRecordsRead
  • DBInstance
    acs:rds:{#regionId}:{#accountId}:dbinstance/{#dbinstanceId}
  • rds:ResourceTag

请求参数

名称类型必填描述示例值
DBInstanceIdstring

实例 ID。可调用 DescribeDBInstances 获取。

rm-uf6wjk5****
SQLHASHstring

慢日志统计里的 SQL 语句唯一标识符,可用于获取该 SQL 语句的慢日志明细。

U2FsdGVk****
StartTimestring

查询开始时间,最大不能早于当前时间 30 天。格式:yyyy-MM-ddTHH:mmZ(UTC 时间)。

2020-06-17T16:00Z
EndTimestring

查询结束时间,需要晚于查询开始时间。格式:yyyy-MM-ddTHH:mmZ(UTC 时间)。

2020-06-18T16:00Z
DBNamestring

数据库名称。

testdb
PageSizeinteger

每页记录数,取值:30~100

说明 默认值:30
30
PageNumberinteger

页码,取值:大于 0 且不超过 Integer 的最大值。

说明 默认值:1
1
NodeIdstring

节点 ID。

注意 该参数仅适用于集群版实例,可以选择查询指定节点日志。若不传该参数,默认返回主节点日志。

rn-p1fm78s90x5****

返回参数

名称类型描述示例值
object

返回参数详情。

PageRecordCountinteger

本页 SQL 语句个数。

1
RequestIdstring

请求 ID。

4DBB1BB0-E5D8-4D41-B1C9-142364DB****
TotalRecordCountinteger

总记录数。

1
DBInstanceIdstring

实例 ID。

rm-uf6wjk5****
Enginestring

数据库类型。

MySQL
PageNumberinteger

页码。

1
Itemsobject []

慢日志明细列表。

HostAddressstring

连接数据库的客户端名称及地址。

****[****] @ [1XX.XX.XX.XX]
RowsAffectedCountlong

影响行数。

说明 仅 SQL Server 实例支持。
34
QueryTimeslong

执行时长。单位:秒(s)。

说明 对于 SQL Server,该参数的单位为毫秒(ms)。
2
SQLTextstring

SQL 命令详情。

select sleep(2)
CpuTimelong

CPU 处理时长。单位:毫秒(ms)。

说明 仅 SQL Server 实例支持。
0.002
QueryTimeMSlong

执行时长。单位:毫秒(ms)。

说明 对于 SQL Server,该参数的单位为微秒(μs)。
2001
ApplicationNamestring

连接的应用名称。

说明 仅 SQL Server 实例支持。
example
LockTimeslong

锁定时长。单位:秒(s)。

0
ExecutionStartTimestring

执行开始时间。格式:yyyy-MM-ddTHH:mm:ssZ(UTC 时间)。

2020-06-18T01:40:44Z
LogicalIOReadlong

逻辑读次数。

说明 仅 SQL Server 实例支持。
383
WriteIOCountlong

I/O 写入次数。

说明 仅 SQL Server 实例支持。
22
PhysicalIOReadlong

物理读次数。

说明 仅 SQL Server 实例支持。
200
ReturnRowCountslong

返回行数。

1
ParseRowCountslong

解析行数。

1
DBNamestring

数据库名称。

testDB
ClientHostNamestring

客户端主机名。

说明 仅 SQL Server 实例支持。
example
UserNamestring

用户名。

说明 仅 SQL Server 实例支持。
user
LastRowsAffectedCountlong

最后一条语句的影响行数。

说明 仅 SQL Server 实例支持。
2
SQLHashstring

慢日志明细里的 SQL 语句唯一标识符。

U2FsdGVk****

示例

正常返回示例

JSON格式

{
  "PageRecordCount": 1,
  "RequestId": "4DBB1BB0-E5D8-4D41-B1C9-142364DB****",
  "TotalRecordCount": 1,
  "DBInstanceId": "rm-uf6wjk5****",
  "Engine": "MySQL",
  "PageNumber": 1,
  "Items": {
    "SQLSlowRecord": [
      {
        "HostAddress": "****[****] @  [1XX.XX.XX.XX]",
        "RowsAffectedCount": 34,
        "QueryTimes": 2,
        "SQLText": "select sleep(2)",
        "CpuTime": 0.002,
        "QueryTimeMS": 2001,
        "ApplicationName": "example",
        "LockTimes": 0,
        "ExecutionStartTime": "2020-06-18T01:40:44Z",
        "LogicalIORead": 383,
        "WriteIOCount": 22,
        "PhysicalIORead": 200,
        "ReturnRowCounts": 1,
        "ParseRowCounts": 1,
        "DBName": "testDB",
        "ClientHostName": "example",
        "UserName": "user",
        "LastRowsAffectedCount": 2,
        "SQLHash": "U2FsdGVk****"
      }
    ]
  }
}

错误码

HTTP status code错误码错误信息描述
400InvalidSearchTimeRangesearch time range cannot be longer than a month.查询结束时间(参数名称:EndTime)与查询开始时间(参数名称:StartTime)的间隔应小于31天,请输入正确的相关参数。
400IO.ExceptionIO exception, retry later.io异常。
400Order.ComboInstanceNotAllowOperateA package instance is not allowed to operate independently.套餐实例不允许单独操作。
400Price.PricingPlanResultNotFoundPricing plan price result not found.定价计划价格结果没有找到。
400Order.NoRealNameAuthenticationYou have not passed the real-name authentication and do not meet the purchase conditions. Please log in to the user center for real-name authentication.您还未通过实名认证,不符合购买条件,请登录用户中心进行实名认证。
400InsufficientAvailableQuotaYour account quota limit is less than 0, please recharge before trying to purchase.您的账户可用额度小于0,请先充值后再尝试购买。
400CommodityServiceCalling.ExceptionFailed to call commodity service.调用商品服务返回失败。
400RegionDissolvedEOMDear customer, Alibaba Cloud plans to optimize and adjust the current region. Cloud services in this region will cease operations. You are currently unable to operate new purchase orders. Thank you for your understanding and support.客户您好,阿里云计划对当前地域进行优化调整,该区域云服务将停止运营,为确保您的业务连续性及数据迁移工作的平稳过渡,您目前无法操作新购类型的订单,感谢理解与支持。
400Commodity.InvalidComponentThe module you purchased is not legal, please buy it again.您购买的模块不合法,请重新购买。
400RegionEndTimeDissolvedIndiaCloud services in the India (Mumbai) region will be discontinued. Set the validity date to July 15, 2024 or earlier than July 15, 2024.客户您好,印度地域裁撤,购买的服务效期不能超过2024.07.15。
400RegionEndTimeDissolvedAustraliaCloud services in the Australia (Sydney) region will be discontinued. Set the validity date to September 30, 2024 or earlier than September 30, 2024.客户您好,澳洲地域裁撤,购买的服务效期不能超过2024.09.30
400Price.CommoditySysCommodity system call exception.商品系统调用异常。
400Pay.InsufficientBalanceInsufficient available balance.可用金不足。
400Order.PeriodInvalidThere is a problem with the period you selected, please choose again.您选购的周期有问题,请重新选购。
400pay.noCreditCardAccount not bound to credit card.账户未绑定信用卡。
400Order.InstHasUnpaidOrderThere is an unpaid order for the service you have purchased. Please pay or void it before placing the order.您选购的服务存在未支付订单,请支付或作废后再下单。
400noAvailablePaymentMethodNo payment method is specified for your account. We recommend that you add a payment method.没有为您的帐户指定付款方式。我们建议您添加一种付款方式。
400BasicInfoUncompletedYour information is incomplete. Complete your information before the operation.您的基本信息未完善,请在操作前先完善您的基本信息。
400Risk.RiskControlRejectionYour account is abnormal, please contact customer service for details.您的账户出现异常,详情请联系客服。
400BasicInfoUncompletedYour information is incomplete, Complete your information before the operation.您的信息不完整,请在操作前填写您的信息。
400System.SaleValidateFailedSales expression validation system error.销售表达式校验系统错误。
403OrderStatus.UnPaidThe specified db instance has unpaid order.实例当前存在未支付订单,请支付后重试。

访问错误中心查看更多错误码。

变更历史

变更时间变更内容概要操作
2023-06-06OpenAPI 错误码发生变更看变更集
变更项变更内容
错误码OpenAPI 错误码发生变更
    删除错误码:400
2023-06-02OpenAPI 错误码发生变更、OpenAPI 入参发生变更看变更集
变更项变更内容
错误码OpenAPI 错误码发生变更
    删除错误码:400
入参OpenAPI 入参发生变更
    新增入参:NodeId