Querying Time Series Objects
Function
This API is used to query the time series objects that can be monitored in the system. You can specify a namespace, name, dimension, and resource ID (format: resType_resId). You can also specify the start position and the maximum number of returned records for a pagination query.
Calling Method
For details, see Calling APIs.
URI
POST /v2/{project_id}/series
Parameter | Mandatory | Type | Description |
|---|---|---|---|
project_id | Yes | String | Project ID, which can be obtained from the console or by calling an API. For details, see Obtaining a Project ID. |
Parameter | Mandatory | Type | Description |
|---|---|---|---|
limit | No | String | Maximum number of returned records. Value range: 1–1000. Default value: 1000. |
offset | No | String | Start position of a pagination query. The value is a non-negative integer. |
Request Parameters
Parameter | Mandatory | Type | Description |
|---|---|---|---|
series | Yes | Array of QuerySeriesOptionParam objects | Array for querying time series objects. |
Parameter | Mandatory | Type | Description |
|---|---|---|---|
namespace | Yes | String | Namespace of time series objects. Options: PAAS.CONTAINER, PAAS.NODE, PAAS.SLA, PAAS.AGGR, and CUSTOMMETRICS.
Custom namespaces are also supported. To query namespaces, call the API Querying Tag Values. |
metric_name | No | String | Time series name. Length: 1 to 255 characters. Options: basic time series names (such as cpuUsage and cpuCoreUsed) provided by AOM, and custom time series names. To query time series names, call the API Querying Tag Values. |
dimensions | No | Array of DimensionSeries objects | List of time series dimensions. To query the time series dimension list, call the API Querying Time Series Objects. |
Response Parameters
Status code: 200
Parameter | Type | Description |
|---|---|---|
series | Array of SeriesQueryItemResult objects | List of time series objects. |
meta_data | MetaDataSeries object | Metadata, including pagination information. |
Parameter | Type | Description |
|---|---|---|
namespace | String | Namespace. |
dimensions | Array of DimensionSeries objects | List of time series dimensions. |
metric_name | String | Time series name. |
unit | String | Time series unit. |
dimension_value_hash | String | Time series hash value. |
Parameter | Type | Description |
|---|---|---|
name | String | Dimension name. |
value | String | Dimension value. |
Parameter | Type | Description |
|---|---|---|
count | Integer | Number of returned records. |
offset | Integer | Start of the next page, which is used for pagination. null: No more data. |
total | Integer | Total number of records. |
nextToken | Integer | Offset. |
Status code: 400
Parameter | Type | Description |
|---|---|---|
error_code | String | Error code. |
error_msg | String | Error message. |
error_type | String | Error type. |
trace_id | String | Request ID. |
Example Requests
Query time series objects by namespace and metric_name.
https://{Endpoint}/v2/{project_id}/series
{
"series" : [ {
"namespace" : "PAAS.CONTAINER",
"metric_name" : "aom_process_cpu_usage"
} ]
} Example Responses
Status code: 200
OK: The request is successful.
{
"meta_data" : {
"count" : 1,
"offset" : null,
"total" : 1,
"nextToken" : 0
},
"series" : [ {
"namespace" : "PAAS.CONTAINER",
"metric_name" : "cpuUsage",
"unit" : "Percent",
"dimensions" : [ {
"name" : "appName",
"value" : "appValue"
} ],
"dimension_value_hash" : null
} ]
} Status code: 400
Bad Request: The request is invalid. The client should not repeat the request without modifications.
{
"error_code" : "AOM.04007101",
"error_msg" : "Invalid namespace",
"error_type" : "BAD_REQUEST",
"trace_id" : ""
} Status Codes
Status Code | Description |
|---|---|
200 | OK: The request is successful. |
400 | Bad Request: The request is invalid. The client should not repeat the request without modifications. |
401 | Unauthorized: The authentication information is incorrect or invalid. |
403 | Forbidden: The request is rejected. The server has received the request and understood it, but the server refuses to respond to it. The client should not repeat the request without modifications. |
500 | Internal Server Error: The server is able to receive the request but unable to understand the request. |
503 | Service Unavailable: The requested service is invalid. The client should not repeat the request without modifications. |
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.

