Class CodeIncubatingAttributes
java.lang.Object
io.opentelemetry.semconv.incubating.CodeIncubatingAttributes
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final io.opentelemetry.api.common.AttributeKey<Long>The column number incode.filepathbest 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>The method or function name, or equivalent (usually rightmost part of the code unit's name).static final io.opentelemetry.api.common.AttributeKey<Long>The line number incode.filepathbest representing the operation.static final io.opentelemetry.api.common.AttributeKey<String>The "namespace" within whichcode.functionis defined.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
The column number incode.filepathbest representing the operation. It SHOULD point within the code unit named incode.function. -
CODE_FILEPATH
The source code file name that identifies the code unit as uniquely as possible (preferably an absolute file path). -
CODE_FUNCTION
The method or function name, or equivalent (usually rightmost part of the code unit's name). -
CODE_LINENO
The line number incode.filepathbest representing the operation. It SHOULD point within the code unit named incode.function. -
CODE_NAMESPACE
The "namespace" within whichcode.functionis defined. Usually the qualified class or module name, such thatcode.namespace+ some separator +code.functionform a unique identifier for the code unit. -
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.
-