Class CodeIncubatingAttributes
java.lang.Object
io.opentelemetry.semconv.incubating.CodeIncubatingAttributes
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final io.opentelemetry.api.common.AttributeKey<Long>Deprecated.static final io.opentelemetry.api.common.AttributeKey<Long>The column number incode.file.pathbest representing the operation.static final io.opentelemetry.api.common.AttributeKey<String>The source code file name that identifies the code unit as uniquely as possible (preferably an absolute file path).static final io.opentelemetry.api.common.AttributeKey<String>Deprecated.Replaced bycode.file.pathstatic final io.opentelemetry.api.common.AttributeKey<String>Deprecated.Replaced bycode.function.namestatic final io.opentelemetry.api.common.AttributeKey<String>The method or function fully-qualified name without arguments.static final io.opentelemetry.api.common.AttributeKey<Long>The line number incode.file.pathbest representing the operation.static final io.opentelemetry.api.common.AttributeKey<Long>Deprecated.Replaced bycode.line.numberstatic final io.opentelemetry.api.common.AttributeKey<String>Deprecated.Value should be included incode.function.namewhich is expected to be a fully-qualified name.static final io.opentelemetry.api.common.AttributeKey<String>A stacktrace as a string in the natural representation for the language runtime. -
Method Summary
-
Field Details
-
CODE_COLUMN
Deprecated.Replaced bycode.column.numberDeprecated, usecode.column.number -
CODE_COLUMN_NUMBER
The column number incode.file.pathbest representing the operation. It SHOULD point within the code unit named incode.function.name. -
CODE_FILE_PATH
The source code file name that identifies the code unit as uniquely as possible (preferably an absolute file path). -
CODE_FILEPATH
Deprecated.Replaced bycode.file.pathDeprecated, usecode.file.pathinstead -
CODE_FUNCTION
Deprecated.Replaced bycode.function.nameDeprecated, usecode.function.nameinstead -
CODE_FUNCTION_NAME
The method or function fully-qualified name without arguments. The value should fit the natural representation of the language runtime, which is also likely the same used withincode.stacktraceattribute value.Notes:
Values and format depends on each language runtime, thus it is impossible to provide an exhaustive list of examples. The values are usually the same (or prefixes of) the ones found in native stack trace representation stored in
code.stacktracewithout information on arguments.Examples:
- Java method:
com.example.MyHttpService.serveRequest - Java anonymous class method:
com.mycompany.Main$1.myMethod - Java lambda method:
com.mycompany.Main$$Lambda/0x0000748ae4149c00.myMethod - PHP function:
GuzzleHttp\Client::transfer - Go function:
github.com/my/repo/pkg.foo.func5 - Elixir:
OpenTelemetry.Ctx.new - Erlang:
opentelemetry_ctx:new - Rust:
playground::my_module::my_cool_func - C function:
fopen
- Java method:
-
CODE_LINE_NUMBER
The line number incode.file.pathbest representing the operation. It SHOULD point within the code unit named incode.function.name. -
CODE_LINENO
Deprecated.Replaced bycode.line.numberDeprecated, usecode.line.numberinstead -
CODE_NAMESPACE
Deprecated.Value should be included incode.function.namewhich is expected to be a fully-qualified name.Deprecated, namespace is now included intocode.function.name -
CODE_STACKTRACE
A stacktrace as a string in the natural representation for the language runtime. The representation is identical toexception.stacktrace.
-
code.column.number