ContainerThrottlingData

@Serializable
data class ContainerThrottlingData(val periods: Int? = null, val throttledPeriods: Int? = null, val throttledTime: Int? = null)

CPU throttling stats of the container. This type is Linux-specific and omitted for Windows containers.

Parameters

periods

Number of periods with throttling active.

throttledPeriods

Number of periods when the container hit its throttling limit.

throttledTime

Aggregated time (in nanoseconds) the container was throttled for.

Constructors

Link copied to clipboard
constructor(periods: Int? = null, throttledPeriods: Int? = null, throttledTime: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "periods")
val periods: Int?
Link copied to clipboard
@SerialName(value = "throttled_periods")
val throttledPeriods: Int?
Link copied to clipboard
@SerialName(value = "throttled_time")
val throttledTime: Int?