VmMetricsResponse
A VM metrics time series for a given timeframe.
The time window over which VM metrics are aggregated on the VM metrics endpoint.
Hour — The last hour. Day — The last day. Week — The last week. Month — The last month. Year — The last year.
Possible values: [Hour, Day, Week, Month, Year]
Start of the sampled range, in UTC.
End of the sampled range, in UTC.
samples object[]nullable
The individual metric samples within the range, ordered by time.
Timestamp the sample was taken at, in UTC.
CPU load, as a percentage of total available CPU.
Total number of CPU cores allocated to the VM at sample time.
RAM used, in gigabytes.
Total RAM allocated to the VM, in gigabytes.
Disk space used, in gigabytes.
Total disk space allocated to the VM, in gigabytes.
Inbound network throughput, in bytes per second.
Outbound network throughput, in bytes per second.
Disk read throughput, in bytes per second.
Disk write throughput, in bytes per second.
{
"timeframe": "Hour",
"rangeFromUtc": "2024-07-29T15:51:28.071Z",
"rangeToUtc": "2024-07-29T15:51:28.071Z",
"samples": [
{
"sampledAtUtc": "2024-07-29T15:51:28.071Z",
"cpuLoadPercent": 0,
"cpuTotal": 0,
"ramUsedGb": 0,
"ramTotalGb": 0,
"diskUsedGb": 0,
"diskTotalGb": 0,
"netInBytesPerSecond": 0,
"netOutBytesPerSecond": 0,
"diskReadBytesPerSecond": 0,
"diskWriteBytesPerSecond": 0
}
]
}