Pipelines metrics

Deprecated

Core instance pipelines metrics (bulk)

get
Authorizations
Path parameters
aggregatorIDstring · uuidRequired
Query parameters
startstring · durationOptional

Option to filter metrics since the given time ago

Default: -24h
intervalstring · durationOptional

Option to set the time window to group metrics

Default: 1h
pipeline_idstring · uuid[]Required

List of pipeline IDs.

Responses
200
OK
application/json
get
GET /v1/aggregators/{aggregatorID}/pipelines_metrics HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "ANY_ADDITIONAL_PROPERTY": {
    "data": {
      "measurements": {
        "ANY_ADDITIONAL_PROPERTY": {
          "plugins": {
            "ANY_ADDITIONAL_PROPERTY": {
              "metrics": {
                "ANY_ADDITIONAL_PROPERTY": [
                  {
                    "time": "2025-06-28T02:07:39.410Z",
                    "value": 1
                  }
                ]
              }
            }
          },
          "totals": {
            "ANY_ADDITIONAL_PROPERTY": [
              {
                "time": "2025-06-28T02:07:39.410Z",
                "value": 1
              }
            ]
          }
        }
      }
    },
    "error": "text"
  }
}