ContainerPidsStats

@Serializable
data class ContainerPidsStats(val current: Int? = null, val limit: Int? = null)

PidsStats contains Linux-specific stats of a container's process-IDs (PIDs). This type is Linux-specific and omitted for Windows containers.

Parameters

current

Current is the number of PIDs in the cgroup.

limit

Limit is the hard limit on the number of pids in the cgroup. A \"Limit\" of 0 means that there is no limit.

Constructors

Link copied to clipboard
constructor(current: Int? = null, limit: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "current")
val current: Int?
Link copied to clipboard
@SerialName(value = "limit")
val limit: Int?