Skip to main content
Monitoring & Collection/Monitoring Query & Overview
GETMonitoringSince 1.0SynchronousAuth Required

GetCapacityTrend

Retrieve historical capacity trend data for a given resource type and period

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Query Parameters

Request Inputs

Path Parameters

  • resourceTypeStringRequired

    Resource type to query trend for

Query Parameters

  • periodString

    Period for trend data (e.g. 7d, 30d) Period for trend data (e.g. 7d, 30d)

Responses

200 OK

On success, this API returns the following response structure.

  • resourceTypeString

    Resource type this trend covers

    Example: vm

  • periodString

    Period for this trend (e.g. 7d, 30d)

    Example: 30d

  • dataPointsList

    Data points

    Example: (nested array)

    • timestampString

      Timestamp for this resource

      Example: 2026-01-15T08:00:00Z

    • totalCountInteger

      Total resource count at this data point

      Example: 490

    • activeCountInteger

      Active resource count at this data point

      Example: 470

    • usagePercentLong

      Usage percentage at this data point

      Example: 95.9

  • growthRateLong

    Growth rate as a decimal fraction (e.g. 0.05 = 5% growth)

    Example: 0.05

Endpoint

GET/api/v1/monitoring/capacity/trends/{resourceType}

/api/v1/monitoring/capacity/trends/{resourceType}

Operation ID

GetCapacityTrend

Permalink

Request Example

curl -X GET '{host}/api/v1/monitoring/capacity/trends/{resourceType}' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "resourceType": "vm",
  "period": "30d",
  "dataPoints": [
    {}
  ],
  "growthRate": 0.05
}

Change History

This API has no change history records yet.

View all change history