Get cluster Memory usage trend (Byte)
Get the per-minute trend of the overall memory usage in the cluster, categorized by cache and working set.
Query parameters
clusterIdsstringRequired
startstringRequired
Start date for the query
endstringRequired
End date for the query
Responses
200
OK
*/*
get
GET /v1/monitoring-clusters/metric/memory/result/transition?clusterIds=text&start=text&end=text HTTP/1.1
Host:
Accept: */*
200
OK
[
{
"metrics": {
"cluster": "thingcluster",
"measure": "usage-bytes"
},
"samples": [
85735514112,
85752094720,
85719015424
],
"timestamps": [
1687741080,
1687741140,
1687741200
],
"values": null
}
]
Was this helpful?