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.
URI
POST /v2/{project_id}/series
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID obtained from IAM. Generally, a project ID contains 32 characters. |
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Auth-Token |
Yes |
String |
User token obtained from IAM. |
Content-Type |
Yes |
String |
Content type, which is application/json. |
X-Aom-Prometheus-Id |
No |
String |
Prometheus instance ID. If this parameter is left blank, the default Prometheus instance is used. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
series |
Yes |
Array of QuerySeriesOptionParam objects |
Array with parameters transferred for time series query. An array supports up to 100 parameters. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
namespace |
Yes |
String |
Metric namespace. Values:
|
metric_name |
No |
String |
Time series name. Length: 1–255 characters. |
dimensions |
No |
Array of DimensionSeries objects |
List of time series dimensions. |
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 |
Dimension list. |
metric_name |
String |
Time series name. |
unit |
String |
Time series unit. |
dimension_value_hash |
String |
Time series hash 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 |
Long |
Offset. |
Status code: 400
Parameter |
Type |
Description |
---|---|---|
error_code |
String |
Error code. |
error_msg |
String |
Error message. |
error_type |
String |
Error type. |
Example Requests
Query data by namespace+appName+clusterName
POST https://{Endpoint}/v2/{project_id}/series { "series" : [ { "namespace" : "PAAS.CONTAINER", "dimensions" : [ { "name" : "appName", "value" : "demo" }, { "name" : "clusterName", "value" : "test" } ] } ] }
Example Responses
Status code: 200
OK
The request is successful.
{ "meta_data" : { "count" : 1, "offset" : null, "total" : 1 }, "series" : [ { "namespace" : "abc", "metric_name" : "cpuUsage", "unit" : "Percent", "dimensions" : [ { "name" : "instance_id", "value" : "demo1" } ] } ] }
Status code: 400
Bad Request
Invalid request. The client should not repeat the request without modifications.
{ "error_code" : "AOM.04007500", "error_msg" : "internal server error", "error_type" : "INTERNAL_SERVER_ERROR" }
Status Codes
Status Code |
Description |
---|---|
200 |
OK The request is successful. |
400 |
Bad Request Invalid request. The client should not repeat the request without modifications. |
401 |
Unauthorized The authorization 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.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot