获取数据量观测数据
更新时间:2024-12-31
接口描述
获取数据量观测数据
API调用地址
POST /api/bes/cluster/data_size_tendency
请求参数
Header 参数
参数名 | 类型 | 是否必须 | 描述 | 示例值 |
---|---|---|---|---|
x-Region | String | 是 | 区域 | bd |
Body 参数
参数名称 | 参数类型 | 是否必须 | 描述 | 示例值 |
---|---|---|---|---|
clusterId | String | 是 | 集群id | 111111111111111 |
indexPrefix | String | 否 | 索引前缀(默认为空字符串) | index |
datePattern | String | 是 | 日期格式 | yyyy-MM-dd |
times | Integer | 是 | 时间范围 | 7 |
timeUnit | String | 是 | 时间单位(枚举) | HOURS/MINUTES/DAYS/MONTHS/YEARS |
示例
{
"clusterId":"811064791824207872",
"indexPrefix":"",
"datePattern":"yyyyMMdd",
"times":7,
"timeUnit":"DAYS"
}
响应参数
参数 | 必填 | 类型 | 描述 | 示例值 |
---|---|---|---|---|
success | 否 | boolean | 请求是否成功 | true |
status | 是 | integer | 状态码 | 200 |
result | 是 | String |
Result字段数据结构说明
参数名称 | 参数类型 | 描述 | 示例值 |
---|---|---|---|
clusterId | String | 集群id | 111111111111111 |
data | List |
DataItem字段数据结构说明
参数名称 | 参数类型 | 描述 | 示例值 |
---|---|---|---|
byteSize | String | 总数据字节数 | 11059 |
indices | List |
索引信息 | |
size | String | 总数据量大小 | 10.7KB |
time | String | 具体时间 | 20230919 |
timeMills | String | 时间戳 | 1695115967995 |
IndicesItem字段数据结构说明
参数名称 | 参数类型 | 描述 | 示例值 |
---|---|---|---|
byteSize | String | 总数据字节数 | 11059 |
index | String | 索引名称 | index |
size | String | 总数据量大小 | 10.7KB |
示例
{
"result" : {
"data" : [ {
"indices" : [ {
"byteSize" : "11059",
"size" : "10.7KB",
"index" : "index"
}, {
"byteSize" : "11059",
"size" : "10.7KB",
"index" : "index"
} ],
"byteSize" : "11059",
"size" : "10.7KB",
"timeMills" : "1695115967995",
"time" : "20230919"
}, {
"indices" : [ {
"byteSize" : "11059",
"size" : "10.7KB",
"index" : "index"
}, {
"byteSize" : "11059",
"size" : "10.7KB",
"index" : "index"
} ],
"byteSize" : "11059",
"size" : "10.7KB",
"timeMills" : "1695115967995",
"time" : "20230919"
} ],
"clusterId" : "clusterId"
},
"success" : "true",
"status" : 200
}