更新时间:2024-12-27 GMT+08:00

桌面统计

功能介绍

统计租户下的普通桌面、桌面池状态,默认仅统计总数。

调试

您可以在API Explorer中调试该接口,支持自动认证鉴权。API Explorer可以自动生成SDK代码示例,并提供SDK代码示例调试功能。

URI

GET /v2/{project_id}/statistics

表1 路径参数

参数

是否必选

参数类型

描述

project_id

String

项目ID。

表2 Query参数

参数

是否必选

参数类型

描述

desktop_type

Array of strings

桌面类型。

statistics_type

Array of strings

统计类型,为空时仅统计桌面总数 |- - attach-state 按照分配状态统计 - login-state 按照登录状态统计 - run-state 按照运行状态统计。

请求参数

表3 请求Header参数

参数

是否必选

参数类型

描述

X-Auth-Token

String

用户Token。

通过调用IAM服务获取用户Token接口获取(响应消息头中X-Subject-Token的值)。

响应参数

状态码: 200

表4 响应Body参数

参数

参数类型

描述

total_num

Integer

桌面总数。

attach_statistics

AttachStatistics object

分配情况统计。

run_state_statistics

DesktopRunStatisticsRsp object

运行情况统计。

login_state_statistics

DesktopLoginStatisticsRsp object

登录情况统计。

desktop_pool_statistics

Array of DesktopPoolStatistics objects

每个桌面池的情况统计,当desktop_type指定为POOL时返回。

表5 DesktopPoolStatistics

参数

参数类型

描述

desktop_pool_id

String

桌面池id。

desktop_pool_name

String

桌面池名称。

total_num

Integer

桌面总数。

attach_statistics

AttachStatistics object

分配情况统计。

run_state_statistics

DesktopRunStatisticsRsp object

运行情况统计。

login_state_statistics

DesktopLoginStatisticsRsp object

登录情况统计。

表6 AttachStatistics

参数

参数类型

描述

attached_num

Integer

已分配个数。

unattached_num

Integer

未分配个数。

attaching_num

Integer

分配中个数。

attach_error_num

Integer

分配失败的个数。

表7 DesktopRunStatisticsRsp

参数

参数类型

描述

stop_num

Integer

停止个数。

active_num

Integer

运行中个数。

error_num

Integer

故障个数。

hibernated_num

Integer

休眠个数。

表8 DesktopLoginStatisticsRsp

参数

参数类型

描述

in_use_num

Integer

使用中。

unregistered_num

Integer

未注册数目。

unable_to_connect_num

Integer

未注册数目。

ready_num

Integer

空闲数目。

disconnected_num

Integer

断开连接数目。

状态码: default

表9 响应Body参数

参数

参数类型

描述

error_code

String

错误码,失败时返回。

error_msg

String

错误描述。

encoded_authorization_message

String

加密后的详细拒绝原因,用户可以自行调用STS服务的decode-authorization-message接口进行解密。

请求示例

响应示例

状态码: 200

状态统计响应。

{
  "total_num" : 0,
  "attach_statistics" : {
    "attached_num" : 0,
    "unattached_num" : 0,
    "attaching_num" : 0,
    "attach_error_num" : 0
  },
  "run_state_statistics" : {
    "stop_num" : 0,
    "active_num" : 5,
    "error_num" : 0,
    "hibernated_num" : 0
  },
  "login_state_statistics" : {
    "in_use_num" : 0,
    "stop_num" : 0,
    "unregistered_num" : 0,
    "unable_to_connect_num" : 0,
    "ready_num" : 0,
    "disconnected_num" : 0
  },
  "desktop_pool_statistics" : [ {
    "desktop_pool_id" : 0,
    "desktop_pool_name" : 0,
    "total_num" : 0,
    "attach_statistics" : {
      "attached_num" : 0,
      "unattached_num" : 0,
      "attaching_num" : 0,
      "attach_error_num" : 0
    },
    "run_state_statistics" : {
      "stop_num" : 0,
      "active_num" : 5,
      "error_num" : 0,
      "hibernated_num" : 0
    },
    "login_state_statistics" : {
      "in_use_num" : 0,
      "stop_num" : 0,
      "unregistered_num" : 0,
      "unable_to_connect_num" : 0,
      "ready_num" : 0,
      "disconnected_num" : 0
    }
  } ]
}

状态码

状态码

描述

200

状态统计响应。

default

错误响应。

错误码

请参见错误码