查询集群指标
Query the metrics of a specific cluster.
该 API 的 Base URL 格式如下:
https://api.cloud.zilliz.com.cn
export BASE_URL="https://api.cloud.zilliz.com.cn"
认证令牌,应为具备适当权限的 API 密钥。
ID of the target cluster.
指标报告期间的起始日期和时间,以 UTC 时间格式的 ISO 8601 时间戳表示。当 period
参数未设置时,需同时包含 start
和 end
参数。
指标报告期间的结束日期和时间,以 UTC 时间格式的 ISO 8601 时间戳表示。当 period
参数未设置时,需同时包含 start
和 end
参数。
Zilliz Cloud 向用户报告指标的持续时间,以 UTC 时间格式的 ISO 8601 持续时间表示。当 start
和 end
参数未设置时,需同时包含 period
参数。
Zilliz Cloud 向用户报告指标的时间间隔,以 UTC 时间格式的 ISO 8601 持续时间表示。最小粒度为 PT30S。
一个 MetricQuery 对象列表。
A MetricQuery object.
当前指标使用的统计方法。对于延迟指标,可选值为 AVG(平均值)和 P99(99百分位)。对于其他指标,AVG 均可使用。
export TOKEN="YOUR_API_KEY"
export CLUSTER_ID="inxx-xxxxxxxxxxxxxxx"
curl --request POST \
--url "${BASE_URL}/v2/clusters/${CLUSTER_ID}/metrics/query" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json" \
-d '{
"start": "2024-06-30T16:09:53Z",
"end": "2024-07-01T16:09:53Z",
"granularity": "PT6H",
"metricQueries": [
{
"name": "CU_COMPUTATION",
"stat": "AVG"
}
]
}'
响应码。
响应负载。
对指定指标采集到的统计信息列表。
A set of collected statistics.
指标名称。
使用的统计方法。
统计值单位。
在采集周期内收集到的统计信息列表。
Statistics collected within an interval period.
ISO 8601 格式的数据点时间戳。
给定时间戳的指标值。
Returns an error message.
响应码。
错误描述。
{
"code": 0,
"data": {
"results": [
{
"name": "CU_COMPUTATION",
"stat": "AVG",
"unit": "percent",
"values": [
{
"timestamp": "2024-06-30T16:09:53Z",
"value": null
},
{
"timestamp": "2024-06-30T22:09:53Z",
"value": "1.00"
},
{
"timestamp": "2024-07-01T04:09:53Z",
"value": "1.00"
},
{
"timestamp": "2024-07-01T10:09:53Z",
"value": "1.00"
}
]
}
]
}
}