View Source OpenTelemetry.SemConv.Incubating.Metrics.ContainerMetrics (OpenTelemetry.SemConv v1.27.0)
OpenTelemetry Semantic Conventions for Container metrics.
Summary
Functions
Total CPU time consumed
Disk bytes for the container.
Memory usage of the container.
Network bytes for the container.
Functions
@spec container_cpu_time() :: :"container.cpu.time"
Total CPU time consumed
Instrument: counter
Unit: s
Notes
Total CPU time consumed by the specific container on all available CPU cores
iex> OpenTelemetry.SemConv.Incubating.Metrics.ContainerMetrics.container_cpu_time()
:"container.cpu.time"
?CONTAINER_CPU_TIME.
'container.cpu.time'
@spec container_disk_io() :: :"container.disk.io"
Disk bytes for the container.
Instrument: counter
Unit: By
Notes
The total number of bytes read/written successfully (aggregated from all disks).
iex> OpenTelemetry.SemConv.Incubating.Metrics.ContainerMetrics.container_disk_io()
:"container.disk.io"
?CONTAINER_DISK_IO.
'container.disk.io'
@spec container_memory_usage() :: :"container.memory.usage"
Memory usage of the container.
Instrument: counter
Unit: By
Notes
Memory usage of the container.
iex> OpenTelemetry.SemConv.Incubating.Metrics.ContainerMetrics.container_memory_usage()
:"container.memory.usage"
?CONTAINER_MEMORY_USAGE.
'container.memory.usage'
@spec container_network_io() :: :"container.network.io"
Network bytes for the container.
Instrument: counter
Unit: By
Notes
The number of bytes sent/received on all network interfaces by the container.
iex> OpenTelemetry.SemConv.Incubating.Metrics.ContainerMetrics.container_network_io()
:"container.network.io"
?CONTAINER_NETWORK_IO.
'container.network.io'