Batch Querying Metric Data
Function
This API is used to query metric data in batches.
Constraints
This API is supported in the following regions: CN East-Shanghai1, CN Southwest-Guiyang1, CN North-Ulanqab1, CN North-Beijing4, CN South-Guangzhou, CN North-Beijing1, CN South-Shenzhen, AP-Singapore, CN-Hong Kong, and CN East-Shanghai2.
Debugging
You can debug this API through automatic authentication in API Explorer or use the SDK sample code generated by API Explorer.
Authorization Information
Each account has all the permissions required to call all APIs, but IAM users must be assigned the required permissions.
- If you are using role/policy-based authorization, see Permissions Policies and Supported Actions for details on the required permissions.
- If you are using identity policy-based authorization, the following identity policy-based permissions are required.
Action
Access Level
Resource Type (*: required)
Condition Key
Alias
Dependencies
ces:metricData:list
List
-
-
-
-
URI
POST /v2/{project_id}/batch-query-metric-data
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| project_id | Yes | String | Definition Project ID. It is used to specify the project that an asset belongs to. You can query the assets of a project by project ID. You can obtain the project ID from the API or console. For details, see Obtaining a Project ID. Constraints N/A Range 1 to 64 characters. Default Value N/A |
Request Parameters
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| Content-Type | No | String | Definition MIME type of the request body. Constraints: None Value range: The value can contain 1 to 64 characters. Default value: The default type is application/json; charset=UTF-8. |
| X-Auth-Token | No | String | Definition User token. Constraints: None Value range: The value can contain 1 to 16,384 characters. Default value: None |
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| namespace | Yes | String | Definition Namespace of the service. For details, see Services Interconnected with Cloud Eye. Constraints N/A Range The value is in the service.item format. The values of service and item must start with a letter and contain only letters, digits, and underscores (_). It can contain 3 to 32 characters. Default Value N/A |
| metric_name | Yes | String | Definition Metric name of a resource. For details about the metric names of each resource, see their service documentation. You can navigate there from Services Interconnected with Cloud Eye. Constraints N/A Range The value must start with a letter and can only contain letters, digits, underscores (_), and hyphens (-). It allows 1 to 64 characters. For example, the ECS metric cpu_util indicates the CPU usage of an ECS. The DDS metric mongo001_command_ps indicates the command execution frequency. Default Value N/A |
| metric_dimension | Yes | String | Definition Resource dimension information. Multiple dimensions are separated by commas (,). Constraints N/A Range The value must start with a letter and can only contain digits, letters, underscores (_), hyphens (-), and commas (,). Each dimension must start with a letter and allows 1 to 32 characters. Multiple dimensions are separated by commas (,). Default Value N/A |
| from | No | Long | Definition Start time for querying monitoring data. The value is a timestamp in milliseconds. Constraints from must be earlier than to, and the interval between to and from must be within 5 minutes. Range The millisecond-level timestamp range is [1111111111111,9999999999999]. Default Value N/A |
| to | No | Long | Definition End time for querying monitoring data. The value is a timestamp in milliseconds. Constraints from must be earlier than to, and the interval between to and from must be within 5 minutes. Range The millisecond-level timestamp range is [1111111111111,9999999999999]. Default Value N/A |
| limit | No | Integer | Definition Number of records displayed on each page. Constraints N/A Range 1 to 1000 Default Value 100 |
| offset | No | Integer | Definition Pagination offset. The default value is 0. It increases with each new request by the size of the data_points array from the last response. If the query result is empty, all metric data has been obtained. Constraints N/A Range 0 to 9,999,999. Default Value 0 |
Response Parameters
Status code: 200
| Parameter | Type | Description |
|---|---|---|
| namespace | String | Definition Namespace of the service. For details, see Services Interconnected with Cloud Eye. Range The value is in the service.item format. The values of service and item must start with a letter and contain only letters, digits, and underscores (_). It can contain 3 to 32 characters. |
| metric_name | String | Definition Metric name of a resource. For details about the metric names of each resource, see their service documentation. You can navigate there from Services Interconnected with Cloud Eye. Range The value must start with a letter and can only contain letters, digits, underscores (_), and hyphens (-). It allows 1 to 96 characters. For example, the ECS metric cpu_util indicates the CPU usage of an ECS. The DDS metric mongo001_command_ps indicates the command execution frequency. |
| metric_dimension | String | Definition Resource dimensions. Multiple dimensions are separated by commas (,). Range The value must start with a letter and can only contain digits, letters, underscores (_), hyphens (-), and commas (,). Each dimension must start with a letter and allows 1 to 32 characters. Multiple dimensions are separated by commas (,). |
| data_points | Array of MetricDataPoint objects | Definition Monitoring data list. |
| Parameter | Type | Description |
|---|---|---|
| dimensions | Array of dimensions objects | Definition Dimension information. |
| timestamp | Integer | Definition Metric collection time. Range Minimum: 0. |
| value | Double | Definition Metric value. Range N/A |
| unit | String | Definition Data unit. Range [0,32] |
| Parameter | Type | Description |
|---|---|---|
| name | String | Definition Resource dimension name. Range 1 to 32 characters. |
| value | String | Definition Resource dimension value. Range 1 to 256 characters. |
| origin_value | String | Definition Actual dimension information. Range The value can contain 1 to 1,024 characters. |
Status code: 400
| Parameter | Type | Description |
|---|---|---|
| error_code | String | Status codes customized by each cloud service when a request error occurs. |
| error_msg | String | Request error message. |
| request_id | String | Request ID. |
Status code: 401
| Parameter | Type | Description |
|---|---|---|
| error_code | String | Status codes customized by each cloud service when a request error occurs. |
| error_msg | String | Request error message. |
| request_id | String | Request ID. |
Status code: 403
| Parameter | Type | Description |
|---|---|---|
| error_code | String | Status codes customized by each cloud service when a request error occurs. |
| error_msg | String | Request error message. |
| request_id | String | Request ID. |
Status code: 500
| Parameter | Type | Description |
|---|---|---|
| error_code | String | Status codes customized by each cloud service when a request error occurs. |
| error_msg | String | Request error message. |
| request_id | String | Request ID. |
Example Requests
Query the monitoring data of the disk_agt_write_bytes_rate metric whose resource dimension is instance_id,disk. The monitoring data was collected from 16:50:00 to 16:55:00 on November 14, 2024, with two records on each page.
/v2/d946d6a5b221400185e9db592a5329c6/batch-query-metric-data
{
"namespace" : "AGT.ECS",
"metric_name" : "disk_agt_write_bytes_rate",
"metric_dimension" : "instance_id,disk",
"from" : 1731574200000,
"to" : 1731574500000,
"limit" : 2,
"offset" : 0
} Example Responses
Status code: 200
OK. Response body for querying metric data in batches.
{
"namespace" : "AGT.ECS",
"metric_name" : "disk_agt_write_bytes_rate",
"metric_dimension" : "instance_id,disk",
"data_points" : [ {
"dimensions" : [ {
"name" : "disk",
"value" : "2e84018fc8b4484b94e89aae212fe615",
"origin_value" : "vda"
}, {
"name" : "instance_id",
"value" : "57259492-54c8-475c-8bff-1c3c60d9ed4e"
} ],
"timestamp" : 1731574202332,
"value" : 4232.53,
"unit" : "Byte/s"
}, {
"dimensions" : [ {
"name" : "disk",
"value" : "2e84018fc8b4484b94e89aae212fe615",
"origin_value" : "vda"
}, {
"name" : "instance_id",
"value" : "8f3058e2-64aa-42d7-ba68-9df1cee811db"
} ],
"timestamp" : 1731574206166,
"value" : 17885.87,
"unit" : "Byte/s"
} ]
} Status Codes
| Status Code | Description |
|---|---|
| 200 | OK. Response body for querying metric data in batches. |
| 400 | The server failed to process the request. |
| 401 | Token authentication is required. |
| 403 | Access to the requested page is forbidden. |
| 500 | Failed to complete the request because of an internal server error. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot