Updated on 2024-04-15 GMT+08:00

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

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Project ID obtained from IAM. Generally, a project ID contains 32 characters.

Request Parameters

Table 2 Request header 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.

Table 3 Request body parameters

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.

Table 4 QuerySeriesOptionParam

Parameter

Mandatory

Type

Description

namespace

Yes

String

Metric namespace. Values:

  • PAAS.CONTAINER: namespace of component, instance, process, and container metrics.

  • PAAS.NODE: namespace of host, network, disk, and file system metrics.

  • PAAS.SLA: namespace of SLA metrics.

  • PAAS.AGGR: namespace of cluster metrics.

  • CUSTOM.Prometheus: namespace of Prometheus metrics.

  • Namespace of custom metrics.

metric_name

No

String

Time series name. Length: 1–255 characters.

dimensions

No

Array of DimensionSeries objects

List of time series dimensions.

Table 5 DimensionSeries

Parameter

Mandatory

Type

Description

name

No

String

Name.

value

No

String

Value.

Response Parameters

Status code: 200

Table 6 Response body parameters

Parameter

Type

Description

series

Array of SeriesQueryItemResult objects

List of time series objects.

meta_data

MetaDataSeries object

Metadata, including pagination information.

Table 7 SeriesQueryItemResult

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.

Table 8 DimensionSeries

Parameter

Type

Description

name

String

Name.

value

String

Value.

Table 9 MetaDataSeries

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

Table 10 Response body parameters

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.