终端节点统计请求

终端节点统计信息请求

Redis 企业软件
方法 路径 描述
获取 /v1/endpoints/stats 获取所有终端节点的统计信息

获取所有终端节点统计信息

GET /v1/endpoints/stats

获取所有端点-代理链接的统计信息。

注意:
此方法将返回 endpoints 和 listeners 统计信息以进行 backward 兼容性。

所需权限

权限名称
view_endpoint_stats

请求

HTTP 请求示例

GET /v1/endpoints/stats?interval=1hour&stime=2014-08-28T10:00:00Z 

请求标头

钥匙 价值 描述
主机 cnm.cluster.fqdn 中 域名
接受 应用程序/JSON 接受的媒体类型

查询参数

类型 描述
间隔 字符串 我们需要统计数据的时间间隔:1 秒/10 秒/5 分钟/15 分钟/1 小时/12 小时/1 周(可选)
时间 ISO_8601 我们想要统计数据的开始时间。应符合 ISO_8601 格式(可选)
etime (英语) ISO_8601 End time 之后我们不需要统计数据。应符合 ISO_8601 格式(可选)

响应

uidformat 为:"BDB_UID:ENDPOINT_UID:PROXY_UID"

例如:{"uid": "1:2:3"}方法BDB_UID=1,ENDPOINT_UID=2PROXY_UID=3

示例 JSON 正文

[
   {
      "uid" : "365:1:1",
      "intervals" : [
         {
            "interval" : "10sec",
            "total_req" : 0,
            "egress_bytes" : 0,
            "cmd_get" : 0,
            "monitor_sessions_count" : 0,
            "auth_errors" : 0,
            "acc_latency" : 0,
            "stime" : "2017-01-12T14:59:50Z",
            "write_res" : 0,
            "total_connections_received" : 0,
            "cmd_set" : 0,
            "read_req" : 0,
            "max_connections_exceeded" : 0,
            "acc_write_latency" : 0,
            "write_req" : 0,
            "other_res" : 0,
            "cmd_flush" : 0,
            "acc_read_latency" : 0,
            "other_req" : 0,
            "conns" : 0,
            "write_started_res" : 0,
            "cmd_touch" : 0,
            "read_res" : 0,
            "auth_cmds" : 0,
            "etime" : "2017-01-12T15:00:00Z",
            "total_started_res" : 0,
            "ingress_bytes" : 0,
            "last_res_time" : 0,
            "read_started_res" : 0,
            "acc_other_latency" : 0,
            "total_res" : 0,
            "last_req_time" : 0,
            "other_started_res" : 0
         }
      ]
   },
   {
      "intervals" : [
         {
            "acc_read_latency" : 0,
            "other_req" : 0,
            "etime" : "2017-01-12T15:00:00Z",
            "auth_cmds" : 0,
            "total_started_res" : 0,
            "write_started_res" : 0,
            "cmd_touch" : 0,
            "conns" : 0,
            "read_res" : 0,
            "total_res" : 0,
            "other_started_res" : 0,
            "last_req_time" : 0,
            "read_started_res" : 0,
            "last_res_time" : 0,
            "ingress_bytes" : 0,
            "acc_other_latency" : 0,
            "egress_bytes" : 0,
            "interval" : "10sec",
            "total_req" : 0,
            "acc_latency" : 0,
            "auth_errors" : 0,
            "cmd_get" : 0,
            "monitor_sessions_count" : 0,
            "read_req" : 0,
            "max_connections_exceeded" : 0,
            "total_connections_received" : 0,
            "cmd_set" : 0,
            "acc_write_latency" : 0,
            "write_req" : 0,
            "stime" : "2017-01-12T14:59:50Z",
            "write_res" : 0,
            "cmd_flush" : 0,
            "other_res" : 0
         }
      ],
      "uid" : "333:1:2"
   }
]

Status codes

Code Description
200 OK No error
RATE THIS PAGE
Back to top ↑