ContainerCPUStats

@Serializable
data class ContainerCPUStats(val cpuUsage: ContainerCPUUsage? = null, val systemCpuUsage: Int? = null, val onlineCpus: Int? = null, val throttlingData: ContainerThrottlingData? = null)

CPU related info of the container

Parameters

cpuUsage
systemCpuUsage

System Usage. This field is Linux-specific and omitted for Windows containers.

onlineCpus

Number of online CPUs. This field is Linux-specific and omitted for Windows containers.

throttlingData

Constructors

Link copied to clipboard
constructor(cpuUsage: ContainerCPUUsage? = null, systemCpuUsage: Int? = null, onlineCpus: Int? = null, throttlingData: ContainerThrottlingData? = null)

Properties

Link copied to clipboard
@SerialName(value = "cpu_usage")
val cpuUsage: ContainerCPUUsage?
Link copied to clipboard
@SerialName(value = "online_cpus")
val onlineCpus: Int?
Link copied to clipboard
@SerialName(value = "system_cpu_usage")
val systemCpuUsage: Int?
Link copied to clipboard
@SerialName(value = "throttling_data")
val throttlingData: ContainerThrottlingData?