Skip to main content

Home

GET /clusters/{clusterName}/resources/memory/allocated

Gets a time series for allocated memory in a given cluster.

Request
GET http://<unravel-host>:3000/api/v1/clusters/{clusterName}/resources/memory/allocated?end_time={end_time}&start_time={start_time}&interval={interval}&pointInterval={pointInterval}
Path parameters

Name

Description

cluster_name

Cluster name.

Query parameters

Required parameters are highlighted.

Name

Type

Description

start_time

string

Start date and time. Format yyyy-mm-ddThh:mm:ss

end_time

string

End date and time. Format yyyy-mm-ddThh:mm:ss

interval

string

The period after which the data needs to be shown

pointInterval

string

Interval in milliseconds.

Examples

Request:

curl -X GET "http://myserver.com:3000/api/v1/clusters/2f8873f0-aa5f-11ec-9a4b-1e0036001415/resources/memory/allocated?end_time=2022-03-29T11:32:42%2B05:30&amp;start_time=2022-02-27T11:32:42%2B05:30&amp;interval=1d&amp;pointInterval=86400000" -H "accept: application/json"  -H "Content-Type:application/json" -H  "Authorization: JWT <token>"

Response body:

{
   "avg": {
       "1645920000000": null,
       "1646006400000": null,
       "1646092800000": null
   },
   "range": {
       "1645920000000": [
           null,
           null
       ],
       "1646006400000": [
           null,
           null
       ],
       "1646092800000": [
           null,
           null
       ]
   }
}