View Source OpenTelemetry.SemConv.Incubating.CodeAttributes (OpenTelemetry.SemConv v1.27.0)
OpenTelemetry Semantic Conventions for Code attributes.
Summary
Functions
The column number in code.filepath
best representing the operation. It SHOULD point within the code unit named in code.function
.
The source code file name that identifies the code unit as uniquely as possible (preferably an absolute file path).
The method or function name, or equivalent (usually rightmost part of the code unit's name).
The line number in code.filepath
best representing the operation. It SHOULD point within the code unit named in code.function
.
The "namespace" within which code.function
is defined. Usually the qualified class or module name, such that code.namespace
+ some separator + code.function
form a unique identifier for the code unit.
A stacktrace as a string in the natural representation for the language runtime. The representation is to be determined and documented by each language SIG.
Functions
@spec code_column() :: :"code.column"
The column number in code.filepath
best representing the operation. It SHOULD point within the code unit named in code.function
.
Value type
Value must be of type integer()
.
Examples
16
iex> OpenTelemetry.SemConv.Incubating.CodeAttributes.code_column()
:"code.column"
?CODE_COLUMN.
'code.column'
@spec code_filepath() :: :"code.filepath"
The source code file name that identifies the code unit as uniquely as possible (preferably an absolute file path).
Value type
Value must be of type atom() | String.t()
.
Examples
/usr/local/MyApplication/content_root/app/index.php
iex> OpenTelemetry.SemConv.Incubating.CodeAttributes.code_filepath()
:"code.filepath"
?CODE_FILEPATH.
'code.filepath'
@spec code_function() :: :"code.function"
The method or function name, or equivalent (usually rightmost part of the code unit's name).
Value type
Value must be of type atom() | String.t()
.
Examples
serveRequest
iex> OpenTelemetry.SemConv.Incubating.CodeAttributes.code_function()
:"code.function"
?CODE_FUNCTION.
'code.function'
@spec code_lineno() :: :"code.lineno"
The line number in code.filepath
best representing the operation. It SHOULD point within the code unit named in code.function
.
Value type
Value must be of type integer()
.
Examples
42
iex> OpenTelemetry.SemConv.Incubating.CodeAttributes.code_lineno()
:"code.lineno"
?CODE_LINENO.
'code.lineno'
@spec code_namespace() :: :"code.namespace"
The "namespace" within which code.function
is defined. Usually the qualified class or module name, such that code.namespace
+ some separator + code.function
form a unique identifier for the code unit.
Value type
Value must be of type atom() | String.t()
.
Examples
com.example.MyHttpService
iex> OpenTelemetry.SemConv.Incubating.CodeAttributes.code_namespace()
:"code.namespace"
?CODE_NAMESPACE.
'code.namespace'
@spec code_stacktrace() :: :"code.stacktrace"
A stacktrace as a string in the natural representation for the language runtime. The representation is to be determined and documented by each language SIG.
Value type
Value must be of type atom() | String.t()
.
Examples
at com.example.GenerateTrace.methodB(GenerateTrace.java:13)
at com.example.GenerateTrace.methodA(GenerateTrace.java:9)
at com.example.GenerateTrace.main(GenerateTrace.java:5)
iex> OpenTelemetry.SemConv.Incubating.CodeAttributes.code_stacktrace()
:"code.stacktrace"
?CODE_STACKTRACE.
'code.stacktrace'