DockerEngineAPI.Model.ContainerMemoryStats (ex_docker_api v1.48.0)

View Source

Aggregates all memory stats since container inception on Linux. Windows returns stats for commit and private working set only.

Summary

Types

t()

@type t() :: %DockerEngineAPI.Model.ContainerMemoryStats{
  commitbytes: integer() | nil,
  commitpeakbytes: integer() | nil,
  failcnt: integer() | nil,
  limit: integer() | nil,
  max_usage: integer() | nil,
  privateworkingset: integer() | nil,
  stats: %{optional(String.t()) => integer()} | nil,
  usage: integer() | nil
}

Functions

decode(value)