QueryDataMultiple
    • PDF

    QueryDataMultiple

    • PDF

    Article summary

    The latest service changes have not yet been reflected in this content. We will update the content as soon as possible. Please refer to the Korean version for information on the latest updates.

    Available in Classic and VPC

    Get multiple time-series data collected by Cloud Insight.

    Request

    This section describes the request format. The method and URI are as follows:

    MethodURI
    POST/cw_fea/real/cw/api/data/query/multiple

    Request headers

    For information about the headers common to all Cloud Insight APIs, see Cloud Insight request headers.

    Request body

    You can include the following data in the body of your request:

    FieldTypeRequiredDescription
    timeStartIntegerRequiredQuery start date and time (millisecond)
    • Unix timestamp format
    timeEndIntegerRequiredQuery end date and time (millisecond)
    • Unix timestamp format
    metricInfoListArrayRequiredQuery conditions
    • Up to 20 conditions can be queried in a single call
    Note

    When entering a request body, see the following.

    • If the aggregation function (aggregation) configured when registering the schema and the aggregation of the data query request do not match, the data cannot be retrieved.
    • The recommended query period (timeEnd~timeStart) varies depending on the data aggregation interval (interval). For more information, see Recommended query period by data aggregation interval.

    Request example

    The request example is as follows:

    curl --location --request POST 'https://cw.apigw.ntruss.com/cw_fea/real/cw/api/data/query/multiple' \
    --header 'x-ncp-apigw-timestamp: {Timestamp}' \
    --header 'x-ncp-iam-access-key: {Access Key}' \
    --header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
    --header 'Content-Type: application/json' \
    --data '{
      "metricInfoList": [
        {
          "aggregation": "AVG",
          "dimensions": {
            "instanceNo": "**********"
          },
          "interval": "Min1",
          "metric": "avg_cpu_used_rto",
          "prodKey": "**********"
        },
        {
          "aggregation": "AVG",
          "dimensions": {
            "instanceNo": "**********"
          },
          "interval": "Min1",
          "metric": "avg_read_byt_cnt",
          "prodKey": "**********"
        }
      ],
      "timeEnd": **********,
      "timeStart": **********
    }'
    

    Response

    This section describes the response format.

    Response body

    The response body includes the following data:

    FieldTypeRequiredDescription
    aggregationString-Aggregation function
    • COUNT | SUM | MAX | MIN | AVG
    dimensionsObject-Dimension information
    dimensions.instanceNoString-Instance number
    dpsArray-Query result
    • Display in the data point (Unix timestamp format) and data value format
    intervalString-Aggregation interval
    • Min1 | Min5 | Min30 | Hour2 | Day1
    metricString-Metric name
    productNameString-Product name

    Response status codes

    For response status codes common to NAVER Cloud Platform, see Cloud Insight API response status codes.

    Response example

    The response example is as follows:

    [
        {
            "aggregation": "AVG",
            "dimensions": {
                "instanceNo": "**********"
            },
            "dps": [
                [
                    1733184480000,
                    0.3678916
                ],
                [
                    1733184540000,
                    0.33438668
                ],
                [
                    1733184600000,
                    0.32612613
                ],
                [
                    1733184660000,
                    0.32586497
                ],
                [
                    1733184720000,
                    0.30105397
                ]
            ],
            "interval": "Min1",
            "metric": "avg_cpu_used_rto",
            "productName": "Server(VPC)"
        },
        {
            "aggregation": "AVG",
            "dimensions": {
                "instanceNo": "**********"
            },
            "dps": [
                [
                    1733184480000,
                    24029.867
                ],
                [
                    1733184540000,
                    13107.2
                ],
                [
                    1733184600000,
                    13721.6
                ],
                [
                    1733184660000,
                    13107.2
                ],
                [
                    1733184720000,
                    13107.2
                ]
            ],
            "interval": "Min1",
            "metric": "avg_read_byt_cnt",
            "productName": "Server(VPC)"
        }
    ]
    

    Was this article helpful?

    Changing your password will log you out immediately. Use the new password to log back in.
    First name must have atleast 2 characters. Numbers and special characters are not allowed.
    Last name must have atleast 1 characters. Numbers and special characters are not allowed.
    Enter a valid email
    Enter a valid password
    Your profile has been successfully updated.