GET
/
v1
/
vm_summaries
VM Summaries
curl --request GET \
  --url https://gateway.costgraph.baselinehq.cloud/v1/vm_summaries \
  --header 'Authorization: <api-key>'
[
  {
    "creationTime": "<string>",
    "expectedUtilisationCPU": 123,
    "expectedUtilisationRAM": 123,
    "totalCurrentCPU": 123,
    "totalCurrentRAM": 123,
    "totalRecommendedCPU": 123,
    "totalRecommendedRAM": 123,
    "vm": "<string>"
  }
]

Response

vm
string
The name of the virtual machine.
creationTime
string
The creation time of the summary.Example: "2023-10-01T00:00:00Z"
totalCurrentCPU
number
Total current CPU usage across all processes on the VM.
totalCurrentRAM
number
Total current RAM usage across all processes on the VM.
Total recommended CPU allocation based on usage analysis.
Total recommended RAM allocation based on usage analysis.
expectedUtilisationCPU
number
Expected CPU utilization percentage based on historical data.
expectedUtilisationRAM
number
Expected RAM utilization percentage based on historical data.

Authorizations

Authorization
string
header
required

Bearer token for authentication

Response

200
application/json

OK

The response is of type object[].