View Source OpenTelemetry.SemConv.ServiceAttributes (OpenTelemetry.SemConv v1.27.0)

OpenTelemetry Semantic Conventions for Service attributes.

Summary

Functions

Logical name of the service.

The version string of the service API or implementation. The format is not defined by these conventions.

Functions

@spec service_name() :: :"service.name"

Logical name of the service.

Value type

Value must be of type atom() | String.t().

Notes

MUST be the same for all instances of horizontally scaled services. If the value was not specified, SDKs MUST fallback to unknown_service: concatenated with process.executable.name, e.g. unknown_service:bash. If process.executable.name is not available, the value MUST be set to unknown_service.

Examples

["shoppingcart"]
iex> OpenTelemetry.SemConv.ServiceAttributes.service_name()
:"service.name"
@spec service_version() :: :"service.version"

The version string of the service API or implementation. The format is not defined by these conventions.

Value type

Value must be of type atom() | String.t().

Examples

["2.0.0", "a01dbef8a"]
iex> OpenTelemetry.SemConv.ServiceAttributes.service_version()
:"service.version"