OpenTelemetry SDK
    Preparing search index...

    Variable ATTR_PROCESS_EXECUTABLE_BUILD_ID_HTLHASHConst Experimental

    ATTR_PROCESS_EXECUTABLE_BUILD_ID_HTLHASH: "process.executable.build_id.htlhash" = ...

    Deterministic build ID for executables.

    600DCAFE4A110000F2BF38C493F5FB92
    

    GNU and Go build IDs may be stripped or unavailable in some environments (e.g., Alpine Linux, Docker images). This attribute provides a deterministic build ID computed by hashing the first and last 4096 bytes of the file along with its length:

    InputConcat(File[:4096], File[-4096:], BigEndianUInt64(Len(File)))
    DigestSHA256(Input)
    BuildIDDigest[:16]

    The result is the first 16 bytes (128 bits) of the SHA256 digest, represented as a hex string.

    This attribute is experimental and is subject to breaking changes in minor releases of @opentelemetry/semantic-conventions.