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>
    Deprecated.
    Replaced by code.column.number.
    static final io.opentelemetry.api.common.AttributeKey<Long>
    Deprecated.
    deprecated in favor of stable CodeAttributes.CODE_COLUMN_NUMBER attribute.
    static final io.opentelemetry.api.common.AttributeKey<String>
    Deprecated.
    deprecated in favor of stable CodeAttributes.CODE_FILE_PATH attribute.
    static final io.opentelemetry.api.common.AttributeKey<String>
    Deprecated.
    Replaced by code.file.path.
    static final io.opentelemetry.api.common.AttributeKey<String>
    Deprecated.
    Value should be included in code.function.name which is expected to be a fully-qualified name.
    static final io.opentelemetry.api.common.AttributeKey<String>
    Deprecated.
    deprecated in favor of stable CodeAttributes.CODE_FUNCTION_NAME attribute.
    static final io.opentelemetry.api.common.AttributeKey<Long>
    Deprecated.
    deprecated in favor of stable CodeAttributes.CODE_LINE_NUMBER attribute.
    static final io.opentelemetry.api.common.AttributeKey<Long>
    Deprecated.
    Replaced by code.line.number.
    static final io.opentelemetry.api.common.AttributeKey<String>
    Deprecated.
    Value should be included in code.function.name which is expected to be a fully-qualified name.
    static final io.opentelemetry.api.common.AttributeKey<String>
    Deprecated.
    deprecated in favor of stable CodeAttributes.CODE_STACKTRACE attribute.
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • CODE_COLUMN

      @Deprecated public static final io.opentelemetry.api.common.AttributeKey<Long> CODE_COLUMN
      Deprecated.
      Replaced by code.column.number.
      Deprecated, use code.column.number
    • CODE_COLUMN_NUMBER

      @Deprecated public static final io.opentelemetry.api.common.AttributeKey<Long> CODE_COLUMN_NUMBER
      Deprecated.
      deprecated in favor of stable CodeAttributes.CODE_COLUMN_NUMBER attribute.
      The column number in code.file.path best representing the operation. It SHOULD point within the code unit named in code.function.name. This attribute MUST NOT be used on the Profile signal since the data is already captured in 'message Line'. This constraint is imposed to prevent redundancy and maintain data integrity.
    • CODE_FILE_PATH

      @Deprecated public static final io.opentelemetry.api.common.AttributeKey<String> CODE_FILE_PATH
      Deprecated.
      deprecated in favor of stable CodeAttributes.CODE_FILE_PATH attribute.
      The source code file name that identifies the code unit as uniquely as possible (preferably an absolute file path). This attribute MUST NOT be used on the Profile signal since the data is already captured in 'message Function'. This constraint is imposed to prevent redundancy and maintain data integrity.
    • CODE_FILEPATH

      @Deprecated public static final io.opentelemetry.api.common.AttributeKey<String> CODE_FILEPATH
      Deprecated.
      Replaced by code.file.path.
      Deprecated, use code.file.path instead
    • CODE_FUNCTION

      @Deprecated public static final io.opentelemetry.api.common.AttributeKey<String> CODE_FUNCTION
      Deprecated.
      Value should be included in code.function.name which is expected to be a fully-qualified name.
      Deprecated, use code.function.name instead
    • CODE_FUNCTION_NAME

      @Deprecated public static final io.opentelemetry.api.common.AttributeKey<String> CODE_FUNCTION_NAME
      Deprecated.
      deprecated in favor of stable CodeAttributes.CODE_FUNCTION_NAME attribute.
      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 within code.stacktrace attribute value. This attribute MUST NOT be used on the Profile signal since the data is already captured in 'message Function'. This constraint is imposed to prevent redundancy and maintain data integrity.

      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.stacktrace without 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
    • CODE_LINE_NUMBER

      @Deprecated public static final io.opentelemetry.api.common.AttributeKey<Long> CODE_LINE_NUMBER
      Deprecated.
      deprecated in favor of stable CodeAttributes.CODE_LINE_NUMBER attribute.
      The line number in code.file.path best representing the operation. It SHOULD point within the code unit named in code.function.name. This attribute MUST NOT be used on the Profile signal since the data is already captured in 'message Line'. This constraint is imposed to prevent redundancy and maintain data integrity.
    • CODE_LINENO

      @Deprecated public static final io.opentelemetry.api.common.AttributeKey<Long> CODE_LINENO
      Deprecated.
      Replaced by code.line.number.
      Deprecated, use code.line.number instead
    • CODE_NAMESPACE

      @Deprecated public static final io.opentelemetry.api.common.AttributeKey<String> CODE_NAMESPACE
      Deprecated.
      Value should be included in code.function.name which is expected to be a fully-qualified name.
      Deprecated, namespace is now included into code.function.name
    • CODE_STACKTRACE

      @Deprecated public static final io.opentelemetry.api.common.AttributeKey<String> CODE_STACKTRACE
      Deprecated.
      deprecated in favor of stable CodeAttributes.CODE_STACKTRACE attribute.
      A stacktrace as a string in the natural representation for the language runtime. The representation is identical to exception.stacktrace. This attribute MUST NOT be used on the Profile signal since the data is already captured in 'message Location'. This constraint is imposed to prevent redundancy and maintain data integrity.