public static final class DescribeMetricDataRequest.Builder extends Object
| 限定符和类型 | 方法和说明 |
|---|---|
DescribeMetricDataRequest |
build() |
DescribeMetricDataRequest.Builder |
dimensions(String dimensions)
The dimensions based on which the resources are queried.
|
DescribeMetricDataRequest.Builder |
endTime(String endTime)
The end of the time range to query monitoring data.
|
DescribeMetricDataRequest.Builder |
express(String express)
The expression that is used to compute the query results in real time.
|
DescribeMetricDataRequest.Builder |
length(String length)
The number of entries per page.
|
DescribeMetricDataRequest.Builder |
metricName(String metricName)
The metric that is used to monitor the cloud service.
|
DescribeMetricDataRequest.Builder |
namespace(String namespace)
The namespace of the cloud service.
|
DescribeMetricDataRequest.Builder |
period(String period)
The statistical period of the metric.
|
DescribeMetricDataRequest.Builder |
startTime(String startTime)
The start of the time range to query monitoring data.
|
public DescribeMetricDataRequest.Builder dimensions(String dimensions)
The dimensions based on which the resources are queried.
Set the value to a collection of key-value pairs. A typical key-value pair is instanceId:i-2ze2d6j5uhg20x47****.
example:You can query a maximum of 50 instances in a single request.
[{"instanceId": "i-abcdefgh12****"}]
public DescribeMetricDataRequest.Builder endTime(String endTime)
The end of the time range to query monitoring data.
If the StartTime and EndTime parameters are not specified, the monitoring data of the last statistical period is queried.``
If the StartTime and EndTime parameters are specified, the monitoring data of the last statistical period in the specified time range is queried.```` The following examples demonstrate how to determine the period in which monitoring data is queried:
Period parameter to 15, the specified time range must be less than or equal to 20 minutes. For example, if you set the StartTime parameter to 2021-05-08 08:10:00 and the EndTime parameter to 2021-05-08 08:30:00, the monitoring data of the last 15 seconds in the time range is queried.Period to 60 or 900, the specified time range must be less than or equal to 2 hours. For example, if you set the Period parameter to 60, the StartTime parameter to 2021-05-08 08:00:00, and the EndTime parameter to 2021-05-08 10:00:00, the monitoring data of the last 60 seconds in the time range is queried.Period parameter to 3600, the specified time range must be less than or equal to 2 days. For example, if you set the StartTime parameter to 2021-05-08 08:00:00 and the EndTime parameter to 2021-05-10 08:00:00, the monitoring data of the last 3,600 seconds in the time range is queried.The following formats are supported:
example:We recommend that you use UNIX timestamps to prevent time zone-related issues.
1618368960000
public DescribeMetricDataRequest.Builder express(String express)
The expression that is used to compute the query results in real time.
example:Only the
groupbyexpression is supported. This expression is similar to theGROUP BYstatement that is used in databases.
{"groupby":["userId","instanceId"]}
public DescribeMetricDataRequest.Builder length(String length)
The number of entries per page.
Default value: 1000.
example:The maximum value of the Length parameter in a request is 1440.
1000
public DescribeMetricDataRequest.Builder metricName(String metricName)
The metric that is used to monitor the cloud service.
For more information about the metrics of cloud services, see Appendix 1: Metrics.
This parameter is required.
example:cpu_idle
public DescribeMetricDataRequest.Builder namespace(String namespace)
The namespace of the cloud service.
For more information about the namespaces of cloud services, see Appendix 1: Metrics.
This parameter is required.
example:acs_ecs_dashboard
public DescribeMetricDataRequest.Builder period(String period)
The statistical period of the metric.
Valid values: 15, 60, 900, and 3600.
Unit: seconds.
If this parameter is not specified, monitoring data is queried based on the period in which metric values are reported.
For more information about the statistical period of a metric that is specified by the MetricName parameter, see Appendix 1: Metrics.
60
public DescribeMetricDataRequest.Builder startTime(String startTime)
The start of the time range to query monitoring data.
If the StartTime and EndTime parameters are not specified, the monitoring data of the last statistical period is queried.``
If the StartTime and EndTime parameters are specified, the monitoring data of the last statistical period in the specified time range is queried.```` The following examples demonstrate how to determine the period in which monitoring data is queried:
Period parameter to 15, the specified time range must be less than or equal to 20 minutes. For example, if you set the StartTime parameter to 2021-05-08 08:10:00 and the EndTime parameter to 2021-05-08 08:30:00, the monitoring data of the last 15 seconds in the time range is queried.Period to 60 or 900, the specified time range must be less than or equal to 2 hours. For example, if you set the Period parameter to 60, the StartTime parameter to 2021-05-08 08:00:00, and the EndTime parameter to 2021-05-08 10:00:00, the monitoring data of the last 60 seconds in the time range is queried.Period parameter to 3600, the specified time range must be less than or equal to 2 days. For example, if you set the StartTime parameter to 2021-05-08 08:00:00 and the EndTime parameter to 2021-05-10 08:00:00, the monitoring data of the last 3,600 seconds in the time range is queried.The following formats are supported:
You must set the StartTime parameter to a point in time that is later than 00:00:00 UTC on Thursday, January 1, 1970. Otherwise, this parameter is invalid.
We recommend that you use UNIX timestamps to prevent time zone-related issues.
1618368900000
public DescribeMetricDataRequest build()
Copyright © 2026. All rights reserved.