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

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

响应消息

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

    参数

    参数类型

    描述

    total_count

    Integer

    总条数。

    logical_processes

    Array of 表5 objects

    实例的逻辑会话列表。

    表5 logicalProcessesInfo

    参数

    参数类型

    描述

    id

    String

    逻辑会话ID。

    user

    String

    当前连接的用户。

    host

    String

    所属的IP和端口。

    db

    String

    数据库名。

    command

    String

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

    time

    String

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

    state

    String

    当前SQL语句的状态。

    info

    String

    当前所执行的SQL语句。

  • 正常响应示例
    {
      "logical_processes": [
        {
          "id": "4564224",
          "user": "drdsagent",
          "host": "127.0.0.1:54486",
          "db": "None",
          "command": "Query",
          "time": "0",
          "state": "starting",
          "info": "show processlist"
        }
      ],
      "total_count": 1
    }
  • 异常响应

    请参见异常请求结果

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