注:聚合周期period字段请参照如下规则
具体资源池具体指标通过[监控项列表:查询]-->/v4/monitor/query-monitor-items查询所得。常用监控指标如下:
指标描述 | 指标名 | 指标单位 |
---|---|---|
单个文件系统写IOPS | fs_write_iops | 次 |
单个文件系统写带宽 | fs_write_bw | KB/s |
单个文件系统读IOPS | fs_read_iops | 次 |
单个文件系统读带宽 | fs_read_bw | KB/s |
单个文件系统开通总容量 | fs_capacity_total | GB |
单个文件系统已使用容量 | fs_capacity_used | GB |
{
"regionID": "2022guizhou_duoaz_siyouyun_test",
"deviceUUIDList": [
"5bacd54d-07f4-4630-8edd-e7574b291afd"
],
"itemNameList": [
"cpu_util",
"disk_write_bytes_rate"
],
"startTime": "1665305264",
"endTime": "1665391665"
}
curl --location --request POST '/v4.1/monitor/query-sfs-historymetricdata' \
--header 'Content-Type: application/json' \
--data-raw '{
"regionID": "2022guizhou_duoaz_siyouyun_test",
"deviceUUIDList": [
"5bacd54d-07f4-4630-8edd-e7574b291afd"
],
"itemNameList": [
"cpu_util",
"disk_write_bytes_rate"
],
"startTime": "1665305264",
"endTime": "1665391665"
}'
{
"description": "成功",
"errorCode": "SUCCESS",
"message": "success",
"returnObj": {
"result": [
{
"deviceUUID": "5bacd54d-07f4-4630-8edd-e7574b291afd",
"itemAggregateList": [
{
"itemName": "fs_write_iops",
"itemData": [
{
"value": "0",
"samplingTime": 1667815639
}
]
},
{
"itemName": "fs_write_bw",
"itemData": [
{
"value": "0",
"samplingTime": 1667815639
}
]
},
{
"itemName": "fs_read_iops",
"itemData": [
{
"value": "0",
"samplingTime": 1667815639
}
]
},
{
"itemName": "fs_read_bw",
"itemData": [
{
"value": "0",
"samplingTime": 1667815639
}
]
},
{
"itemName": "fs_capacity_total",
"itemData": [
{
"value": "524288",
"samplingTime": 1667815639
}
]
}
],
"regionID": "2022guizhou_duoaz_siyouyun_test"
}
]
},
"statusCode": 800
}