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

OpenTelemetry Semantic Conventions for DB metrics.

Summary

Functions

The number of connections that are currently in state described by the state attribute

The time it took to create a new connection

The maximum number of idle open connections allowed

The minimum number of idle open connections allowed

The maximum number of open connections allowed

The number of pending requests for an open connection, cumulative for the entire pool

The number of connection timeouts that have occurred trying to obtain a connection from the pool

The time between borrowing a connection and returning it to the pool

The time it took to obtain an open connection from the pool

Duration of database client operations.

Functions

Link to this function

db_client_connection_count()

View Source
@spec db_client_connection_count() :: :"db.client.connection.count"

The number of connections that are currently in state described by the state attribute

Instrument: updowncounter
Unit: {connection}

iex> OpenTelemetry.SemConv.Incubating.Metrics.DBMetrics.db_client_connection_count()
:"db.client.connection.count"
Link to this function

db_client_connection_create_time()

View Source
@spec db_client_connection_create_time() :: :"db.client.connection.create_time"

The time it took to create a new connection

Instrument: histogram
Unit: s

iex> OpenTelemetry.SemConv.Incubating.Metrics.DBMetrics.db_client_connection_create_time()
:"db.client.connection.create_time"
Link to this function

db_client_connection_idle_max()

View Source
@spec db_client_connection_idle_max() :: :"db.client.connection.idle.max"

The maximum number of idle open connections allowed

Instrument: updowncounter
Unit: {connection}

iex> OpenTelemetry.SemConv.Incubating.Metrics.DBMetrics.db_client_connection_idle_max()
:"db.client.connection.idle.max"
Link to this function

db_client_connection_idle_min()

View Source
@spec db_client_connection_idle_min() :: :"db.client.connection.idle.min"

The minimum number of idle open connections allowed

Instrument: updowncounter
Unit: {connection}

iex> OpenTelemetry.SemConv.Incubating.Metrics.DBMetrics.db_client_connection_idle_min()
:"db.client.connection.idle.min"
Link to this function

db_client_connection_max()

View Source
@spec db_client_connection_max() :: :"db.client.connection.max"

The maximum number of open connections allowed

Instrument: updowncounter
Unit: {connection}

iex> OpenTelemetry.SemConv.Incubating.Metrics.DBMetrics.db_client_connection_max()
:"db.client.connection.max"
Link to this function

db_client_connection_pending_requests()

View Source
@spec db_client_connection_pending_requests() ::
  :"db.client.connection.pending_requests"

The number of pending requests for an open connection, cumulative for the entire pool

Instrument: updowncounter
Unit: {request}

iex> OpenTelemetry.SemConv.Incubating.Metrics.DBMetrics.db_client_connection_pending_requests()
:"db.client.connection.pending_requests"
Link to this function

db_client_connection_timeouts()

View Source
@spec db_client_connection_timeouts() :: :"db.client.connection.timeouts"

The number of connection timeouts that have occurred trying to obtain a connection from the pool

Instrument: counter
Unit: {timeout}

iex> OpenTelemetry.SemConv.Incubating.Metrics.DBMetrics.db_client_connection_timeouts()
:"db.client.connection.timeouts"
Link to this function

db_client_connection_use_time()

View Source
@spec db_client_connection_use_time() :: :"db.client.connection.use_time"

The time between borrowing a connection and returning it to the pool

Instrument: histogram
Unit: s

iex> OpenTelemetry.SemConv.Incubating.Metrics.DBMetrics.db_client_connection_use_time()
:"db.client.connection.use_time"
Link to this function

db_client_connection_wait_time()

View Source
@spec db_client_connection_wait_time() :: :"db.client.connection.wait_time"

The time it took to obtain an open connection from the pool

Instrument: histogram
Unit: s

iex> OpenTelemetry.SemConv.Incubating.Metrics.DBMetrics.db_client_connection_wait_time()
:"db.client.connection.wait_time"
Link to this function

db_client_connections_create_time()

View Source
This function is deprecated. Replaced by `db.client.connection.create_time`. Note: the unit also changed from `ms` to `s`. .
@spec db_client_connections_create_time() :: :"db.client.connections.create_time"
Link to this function

db_client_connections_idle_max()

View Source
This function is deprecated. Replaced by `db.client.connection.idle.max`. .
@spec db_client_connections_idle_max() :: :"db.client.connections.idle.max"
Link to this function

db_client_connections_idle_min()

View Source
This function is deprecated. Replaced by `db.client.connection.idle.min`. .
@spec db_client_connections_idle_min() :: :"db.client.connections.idle.min"
Link to this function

db_client_connections_max()

View Source
This function is deprecated. Replaced by `db.client.connection.max`. .
@spec db_client_connections_max() :: :"db.client.connections.max"
Link to this function

db_client_connections_pending_requests()

View Source
This function is deprecated. Replaced by `db.client.connection.pending_requests`. .
@spec db_client_connections_pending_requests() ::
  :"db.client.connections.pending_requests"
Link to this function

db_client_connections_timeouts()

View Source
This function is deprecated. Replaced by `db.client.connection.timeouts`. .
@spec db_client_connections_timeouts() :: :"db.client.connections.timeouts"
Link to this function

db_client_connections_usage()

View Source
This function is deprecated. Replaced by `db.client.connection.count`. .
@spec db_client_connections_usage() :: :"db.client.connections.usage"
Link to this function

db_client_connections_use_time()

View Source
This function is deprecated. Replaced by `db.client.connection.use_time`. Note: the unit also changed from `ms` to `s`. .
@spec db_client_connections_use_time() :: :"db.client.connections.use_time"
Link to this function

db_client_connections_wait_time()

View Source
This function is deprecated. Replaced by `db.client.connection.wait_time`. Note: the unit also changed from `ms` to `s`. .
@spec db_client_connections_wait_time() :: :"db.client.connections.wait_time"
Link to this function

db_client_operation_duration()

View Source
@spec db_client_operation_duration() :: :"db.client.operation.duration"

Duration of database client operations.

Instrument: histogram
Unit: s

Notes

Batch operations SHOULD be recorded as a single operation.

iex> OpenTelemetry.SemConv.Incubating.Metrics.DBMetrics.db_client_operation_duration()
:"db.client.operation.duration"