v8

latestOpenAPI 3.0.0Apache 2.0raw.githubusercontent.com2025-10-165266542.4 MB
DigitalOcean-public.v2-new_Monitoring

Get Droplet Autoscale Pool Current Average Memory utilization

To retrieve the current average memory utilization for a given Droplet Autoscale Pool, send a GET request to /v2/monitoring/metrics/droplet_autoscale/current_memory_utilization.

get/v2/monitoring/metrics/droplet_autoscale/current_memory_utilization

Query parameters

autoscale_pool_idstring required

A unique identifier for an autoscale pool.

startstring required

UNIX timestamp to start metric window.

endstring required

UNIX timestamp to end metric window.

Response

The response will be a JSON object with a key called data and status.

status'success' | 'error' required

Example response

{
  "data": {
    "result": [
      {
        "metric": {
          "host_id": "19201920"
        },
        "values": [
          [
            1435781430,
            "1"
          ],
          [
            1435781445,
            "1"
          ]
        ]
      }
    ],
    "resultType": "matrix"
  },
  "status": "success"
}