View Source OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics (OpenTelemetry.SemConv v1.27.0)

OpenTelemetry Semantic Conventions for System metrics.

Summary

Functions

Reports the current frequency of the CPU in Hz

Reports the number of logical (virtual) processor cores created by the operating system to manage multitasking

Reports the number of actual physical processor cores on the hardware

Seconds each logical CPU spent on each mode

Difference in system.cpu.time since the last measurement, divided by the elapsed time and number of logical CPUs

Time disk spent activated

Sum of the time each operation took to complete

An estimate of how much memory is available for starting new applications, without causing swapping

Reports the memory used by the Linux kernel for managing caches of frequently used objects.

Total memory available in the system.

Shared memory used (mostly by tmpfs).

Reports memory in use by state.

Count of packets that are dropped or discarded even though there was no error

Count of network errors detected

Unix swap or windows pagefile usage

Total number of processes in each state

Total number of processes created over uptime of the host

Functions

@spec system_cpu_frequency() :: :"system.cpu.frequency"

Reports the current frequency of the CPU in Hz

Instrument: gauge
Unit: {Hz}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_cpu_frequency()
:"system.cpu.frequency"
Link to this function

system_cpu_logical_count()

View Source
@spec system_cpu_logical_count() :: :"system.cpu.logical.count"

Reports the number of logical (virtual) processor cores created by the operating system to manage multitasking

Instrument: updowncounter
Unit: {cpu}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_cpu_logical_count()
:"system.cpu.logical.count"
Link to this function

system_cpu_physical_count()

View Source
@spec system_cpu_physical_count() :: :"system.cpu.physical.count"

Reports the number of actual physical processor cores on the hardware

Instrument: updowncounter
Unit: {cpu}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_cpu_physical_count()
:"system.cpu.physical.count"
@spec system_cpu_time() :: :"system.cpu.time"

Seconds each logical CPU spent on each mode

Instrument: counter
Unit: s

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_cpu_time()
:"system.cpu.time"
Link to this function

system_cpu_utilization()

View Source
@spec system_cpu_utilization() :: :"system.cpu.utilization"

Difference in system.cpu.time since the last measurement, divided by the elapsed time and number of logical CPUs

Instrument: gauge
Unit: 1

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_cpu_utilization()
:"system.cpu.utilization"
@spec system_disk_io() :: :"system.disk.io"

none

Instrument: counter
Unit: By

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_disk_io()
:"system.disk.io"
@spec system_disk_io_time() :: :"system.disk.io_time"

Time disk spent activated

Instrument: counter
Unit: s

Notes

The real elapsed time ("wall clock") used in the I/O path (time from operations running in parallel are not counted). Measured as:

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_disk_io_time()
:"system.disk.io_time"
@spec system_disk_merged() :: :"system.disk.merged"

none

Instrument: counter
Unit: {operation}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_disk_merged()
:"system.disk.merged"
Link to this function

system_disk_operation_time()

View Source
@spec system_disk_operation_time() :: :"system.disk.operation_time"

Sum of the time each operation took to complete

Instrument: counter
Unit: s

Notes

Because it is the sum of time each request took, parallel-issued requests each contribute to make the count grow. Measured as:

  • Linux: Fields 7 & 11 from procfs-diskstats
  • Windows: "Avg. Disk sec/Read" perf counter multiplied by "Disk Reads/sec" perf counter (similar for Writes)
iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_disk_operation_time()
:"system.disk.operation_time"
Link to this function

system_disk_operations()

View Source
@spec system_disk_operations() :: :"system.disk.operations"

none

Instrument: counter
Unit: {operation}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_disk_operations()
:"system.disk.operations"
Link to this function

system_filesystem_usage()

View Source
@spec system_filesystem_usage() :: :"system.filesystem.usage"

none

Instrument: updowncounter
Unit: By

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_filesystem_usage()
:"system.filesystem.usage"
Link to this function

system_filesystem_utilization()

View Source
@spec system_filesystem_utilization() :: :"system.filesystem.utilization"

none

Instrument: gauge
Unit: 1

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_filesystem_utilization()
:"system.filesystem.utilization"
Link to this function

system_linux_memory_available()

View Source
@spec system_linux_memory_available() :: :"system.linux.memory.available"

An estimate of how much memory is available for starting new applications, without causing swapping

Instrument: updowncounter
Unit: By

Notes

This is an alternative to system.memory.usage metric with state=free.
Linux starting from 3.14 exports "available" memory. It takes "free" memory as a baseline, and then factors in kernel-specific values.
This is supposed to be more accurate than just "free" memory.
For reference, see the calculations here.
See also MemAvailable in /proc/meminfo.

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_linux_memory_available()
:"system.linux.memory.available"
Link to this function

system_linux_memory_slab_usage()

View Source
@spec system_linux_memory_slab_usage() :: :"system.linux.memory.slab.usage"

Reports the memory used by the Linux kernel for managing caches of frequently used objects.

Instrument: updowncounter
Unit: By

Notes

The sum over the reclaimable and unreclaimable state values in linux.memory.slab.usage SHOULD be equal to the total slab memory available on the system.
Note that the total slab memory is not constant and may vary over time.
See also the Slab allocator and Slab in /proc/meminfo.

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_linux_memory_slab_usage()
:"system.linux.memory.slab.usage"
@spec system_memory_limit() :: :"system.memory.limit"

Total memory available in the system.

Instrument: updowncounter
Unit: By

Notes

Its value SHOULD equal the sum of system.memory.state over all states.

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_memory_limit()
:"system.memory.limit"
@spec system_memory_shared() :: :"system.memory.shared"

Shared memory used (mostly by tmpfs).

Instrument: updowncounter
Unit: By

Notes

Equivalent of shared from free command or
Shmem from /proc/meminfo"

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_memory_shared()
:"system.memory.shared"
@spec system_memory_usage() :: :"system.memory.usage"

Reports memory in use by state.

Instrument: updowncounter
Unit: By

Notes

The sum over all system.memory.state values SHOULD equal the total memory
available on the system, that is system.memory.limit.

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_memory_usage()
:"system.memory.usage"
Link to this function

system_memory_utilization()

View Source
@spec system_memory_utilization() :: :"system.memory.utilization"

none

Instrument: gauge
Unit: 1

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_memory_utilization()
:"system.memory.utilization"
Link to this function

system_network_connections()

View Source
@spec system_network_connections() :: :"system.network.connections"

none

Instrument: updowncounter
Unit: {connection}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_network_connections()
:"system.network.connections"
Link to this function

system_network_dropped()

View Source
@spec system_network_dropped() :: :"system.network.dropped"

Count of packets that are dropped or discarded even though there was no error

Instrument: counter
Unit: {packet}

Notes

Measured as:

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_network_dropped()
:"system.network.dropped"
@spec system_network_errors() :: :"system.network.errors"

Count of network errors detected

Instrument: counter
Unit: {error}

Notes

Measured as:

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_network_errors()
:"system.network.errors"
@spec system_network_io() :: :"system.network.io"

none

Instrument: counter
Unit: By

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_network_io()
:"system.network.io"
Link to this function

system_network_packets()

View Source
@spec system_network_packets() :: :"system.network.packets"

none

Instrument: counter
Unit: {packet}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_network_packets()
:"system.network.packets"
@spec system_paging_faults() :: :"system.paging.faults"

none

Instrument: counter
Unit: {fault}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_paging_faults()
:"system.paging.faults"
Link to this function

system_paging_operations()

View Source
@spec system_paging_operations() :: :"system.paging.operations"

none

Instrument: counter
Unit: {operation}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_paging_operations()
:"system.paging.operations"
@spec system_paging_usage() :: :"system.paging.usage"

Unix swap or windows pagefile usage

Instrument: updowncounter
Unit: By

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_paging_usage()
:"system.paging.usage"
Link to this function

system_paging_utilization()

View Source
@spec system_paging_utilization() :: :"system.paging.utilization"

none

Instrument: gauge
Unit: 1

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_paging_utilization()
:"system.paging.utilization"
@spec system_process_count() :: :"system.process.count"

Total number of processes in each state

Instrument: updowncounter
Unit: {process}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_process_count()
:"system.process.count"
Link to this function

system_process_created()

View Source
@spec system_process_created() :: :"system.process.created"

Total number of processes created over uptime of the host

Instrument: counter
Unit: {process}

iex> OpenTelemetry.SemConv.Incubating.Metrics.SystemMetrics.system_process_created()
:"system.process.created"