ContainerTopResponse

@Serializable
data class ContainerTopResponse(val titles: List<String>? = null, val processes: List<List<String>>? = null)

Container \"top\" response.

Parameters

titles

The ps column titles

processes

Each process running in the container, where each process is an array of values corresponding to the titles.

Constructors

Link copied to clipboard
constructor(titles: List<String>? = null, processes: List<List<String>>? = null)

Properties

Link copied to clipboard
@SerialName(value = "Processes")
val processes: List<List<String>>?
Link copied to clipboard
@SerialName(value = "Titles")
val titles: List<String>?