更新时间:2023-07-27 GMT+08:00
弹性资源池扩缩容历史记录
功能介绍
该API用于查询当前弹性资源池扩缩容历史记录。
URI
GET /v3/{project_id}/elastic-resource-pools/{elastic_resource_pool_name}/scale-records
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
project_id |
是 |
String |
项目编号,用于资源隔离。获取方式请参考获取项目ID。 |
elastic_resource_pool_name |
是 |
String |
弹性资源池名称。 长度限制:1~128个字符。 |
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
start_time |
否 |
Long |
start_time用于查询扩缩容历史的开始时间,该时间点需大于当前时间点减30天,必须小于end_time 。时间格式为unix时间戳,单位:毫秒。
|
end_time |
否 |
Long |
end_time用于查询扩缩容历史的结束时间,该时间点不能小于开始时间,不能大于当前时间。时间格式为unix时间戳,单位:毫秒。
|
status |
否 |
String |
弹性资源池扩缩容的状态。 枚举值:
|
offset |
否 |
Integer |
偏移量。 最小值:0 |
limit |
否 |
Integer |
当前分页条数。 最小值:0 最大值:100 |
请求参数
无
响应参数
参数 |
参数类型 |
描述 |
---|---|---|
count |
Integer |
返回数组长度。 |
items |
Array of arrays |
数组中返回的数据。详细说明请参考表4。 |
请求示例
GET https://{endpoint}/v3/{project_id}/elastic-resource-pools/{elastic_resource_pool_name}/scale-records?start_time=1650784624000&end_time=1652625304002&status=&limit=20&offset=1
响应示例
扩缩容历史记录查询接口查询成功
{ "count" : 1, "items" : [ { "max_cu" : 64, "min_cu" : 16, "current_cu" : 16, "target_cu" : 16, "origin_cu" : 16, "record_time" : 1650784624000, "status" : "fail", "fail_reason" : "Internal error, please contact technical support." } ] }
状态码
状态码 |
描述 |
---|---|
200 |
OK |
错误码
请参见错误码。
父主题: 弹性资源池相关API