ContainerBlkioStatEntry

@Serializable
data class ContainerBlkioStatEntry(val major: Int? = null, val minor: Int? = null, val op: String? = null, val value: Int? = null)

Blkio stats entry. This type is Linux-specific and omitted for Windows containers.

Parameters

major
minor
op
`value`

Constructors

Link copied to clipboard
constructor(major: Int? = null, minor: Int? = null, op: String? = null, value: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "major")
val major: Int?
Link copied to clipboard
@SerialName(value = "minor")
val minor: Int?
Link copied to clipboard
@SerialName(value = "op")
val op: String?
Link copied to clipboard
@SerialName(value = "value")
val value: Int?