Class CodeIncubatingAttributes

java.lang.Object
io.opentelemetry.semconv.incubating.CodeIncubatingAttributes

public final class CodeIncubatingAttributes extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final io.opentelemetry.api.common.AttributeKey<Long>
    The column number in code.filepath best 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 in code.filepath best representing the operation.
    static final io.opentelemetry.api.common.AttributeKey<String>
    The "namespace" within which code.function is defined.
    static final io.opentelemetry.api.common.AttributeKey<String>
    A stacktrace as a string in the natural representation for the language runtime.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • CODE_COLUMN

      public static final io.opentelemetry.api.common.AttributeKey<Long> CODE_COLUMN
      The column number in code.filepath best representing the operation. It SHOULD point within the code unit named in code.function.
    • CODE_FILEPATH

      public static final io.opentelemetry.api.common.AttributeKey<String> CODE_FILEPATH
      The source code file name that identifies the code unit as uniquely as possible (preferably an absolute file path).
    • CODE_FUNCTION

      public static final io.opentelemetry.api.common.AttributeKey<String> CODE_FUNCTION
      The method or function name, or equivalent (usually rightmost part of the code unit's name).
    • CODE_LINENO

      public static final io.opentelemetry.api.common.AttributeKey<Long> CODE_LINENO
      The line number in code.filepath best representing the operation. It SHOULD point within the code unit named in code.function.
    • CODE_NAMESPACE

      public static final io.opentelemetry.api.common.AttributeKey<String> 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.
    • CODE_STACKTRACE

      public static final io.opentelemetry.api.common.AttributeKey<String> 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.