分布式数据库中间件 DDM-查询物理会话列表:响应消息

时间:2024-09-11 15:01:18

响应消息

  • 正常响应参数说明
    表4 响应Body参数

    参数

    参数类型

    描述

    total_count

    Integer

    总条数。

    physical_processes

    Array of 表5 objects

    实例的物理会话列表。

    表5 PhysicalProcessInfo

    参数

    参数类型

    描述

    id

    Long

    物理会话ID。

    user

    String

    当前连接的用户。

    host

    String

    所属的IP和端口。

    db

    String

    数据库名。

    command

    String

    连接状态,一般是休眠或空闲(sleep),查询(query),连接(connect)。

    time

    Long

    连接状态持续的时间,单位是秒(s)。

    state

    String

    当前SQL语句的状态。

    info

    String

    当前所执行的SQL语句。

    trx_executed_time

    Long

    事务持续时间,单位是秒(s)。

  • 正常响应示例
    {
      "physical_processes": [
        {
          "id": 1973,
          "user": "DDMRW1613058863",
          "hots": "172.16.241.84:58908",
          "db": "ddm_db_test_0001",
          "state": "",
          "command": "Sleep",
          "info": null,
          "time": 13977,
          "trx_executed_time": 0
        }
      ],
      "total_count": 1
    }
  • 异常响应

    请参见异常请求结果

support.huaweicloud.com/api-ddm/ddm_api_01_0097.html