You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2026-06-03 18:35:08 +02:00
d7ceecfb4c
This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [github.com/golangci/golangci-lint/v2](https://redirect.github.com/golangci/golangci-lint) | `v2.5.0` -> `v2.6.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>golangci/golangci-lint (github.com/golangci/golangci-lint/v2)</summary> ### [`v2.6.0`](https://redirect.github.com/golangci/golangci-lint/blob/HEAD/CHANGELOG.md#v260) [Compare Source](https://redirect.github.com/golangci/golangci-lint/compare/v2.5.0...v2.6.0) 1. New linters - Add `modernize` analyzer suite 2. Linters new features or changes - `arangolint`: from 0.2.0 to 0.3.1 - `dupword`: from 0.1.6 to 0.1.7 (new option `comments-only`) - `go-critic`: from 0.13.0 to 0.14.0 (new rules/checkers: `zeroByteRepeat`, `dupOption`) - `gofumpt`: from 0.9.1 to 0.9.2 ("clothe" naked returns is now controlled by the `extra-rules` option) - `perfsprint`: from 0.9.1 to 0.10.0 (new options: `concat-loop`, `loop-other-ops`) - `wsl`: from 5.2.0 to 5.3.0 3. Linters bug fixes - `dupword`: from 0.1.6 to 0.1.7 - `durationcheck`: from 0.0.10 to 0.0.11 - `exptostd`: from 0.4.4 to 0.4.5 - `fatcontext`: from 0.8.1 to 0.9.0 - `forbidigo`: from 2.1.0 to 2.3.0 - `ginkgolinter`: from 0.21.0 to 0.21.2 - `godoc-lint`: from 0.10.0 to 0.10.1 - `gomoddirectives`: from 0.7.0 to 0.7.1 - `gosec`: from 2.22.8 to 2.22.10 - `makezero`: from 2.0.1 to 2.1.0 - `nilerr`: from 0.1.1 to 0.1.2 - `paralleltest`: from 1.0.14 to 1.0.15 - `protogetter`: from 0.3.16 to 0.3.17 - `unparam`: from [`0df0534`](https://redirect.github.com/golangci/golangci-lint/commit/0df0534333a4) to [`5beb8c8`](https://redirect.github.com/golangci/golangci-lint/commit/5beb8c8f8f15) 4. Misc. - fix: ignore some files to hash the version for custom build </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-go). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTkuNCIsInVwZGF0ZWRJblZlciI6IjQxLjE1OS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJTa2lwIENoYW5nZWxvZyIsImRlcGVuZGVuY2llcyJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: dmathieu <damien.mathieu@elastic.co> Co-authored-by: Tyler Yahn <MrAlias@users.noreply.github.com>
157 lines
4.2 KiB
Go
157 lines
4.2 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package propagation // import "go.opentelemetry.io/otel/propagation"
|
|
|
|
import (
|
|
"context"
|
|
"encoding/hex"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"go.opentelemetry.io/otel/trace"
|
|
)
|
|
|
|
const (
|
|
supportedVersion = 0
|
|
maxVersion = 254
|
|
traceparentHeader = "traceparent"
|
|
tracestateHeader = "tracestate"
|
|
delimiter = "-"
|
|
)
|
|
|
|
// TraceContext is a propagator that supports the W3C Trace Context format
|
|
// (https://www.w3.org/TR/trace-context/)
|
|
//
|
|
// This propagator will propagate the traceparent and tracestate headers to
|
|
// guarantee traces are not broken. It is up to the users of this propagator
|
|
// to choose if they want to participate in a trace by modifying the
|
|
// traceparent header and relevant parts of the tracestate header containing
|
|
// their proprietary information.
|
|
type TraceContext struct{}
|
|
|
|
var (
|
|
_ TextMapPropagator = TraceContext{}
|
|
versionPart = fmt.Sprintf("%.2X", supportedVersion)
|
|
)
|
|
|
|
// Inject injects the trace context from ctx into carrier.
|
|
func (TraceContext) Inject(ctx context.Context, carrier TextMapCarrier) {
|
|
sc := trace.SpanContextFromContext(ctx)
|
|
if !sc.IsValid() {
|
|
return
|
|
}
|
|
|
|
if ts := sc.TraceState().String(); ts != "" {
|
|
carrier.Set(tracestateHeader, ts)
|
|
}
|
|
|
|
// Clear all flags other than the trace-context supported sampling bit.
|
|
flags := sc.TraceFlags() & trace.FlagsSampled
|
|
|
|
var sb strings.Builder
|
|
sb.Grow(2 + 32 + 16 + 2 + 3)
|
|
_, _ = sb.WriteString(versionPart)
|
|
traceID := sc.TraceID()
|
|
spanID := sc.SpanID()
|
|
flagByte := [1]byte{byte(flags)}
|
|
var buf [32]byte
|
|
for _, src := range [][]byte{traceID[:], spanID[:], flagByte[:]} {
|
|
_ = sb.WriteByte(delimiter[0])
|
|
n := hex.Encode(buf[:], src)
|
|
_, _ = sb.Write(buf[:n])
|
|
}
|
|
carrier.Set(traceparentHeader, sb.String())
|
|
}
|
|
|
|
// Extract reads tracecontext from the carrier into a returned Context.
|
|
//
|
|
// The returned Context will be a copy of ctx and contain the extracted
|
|
// tracecontext as the remote SpanContext. If the extracted tracecontext is
|
|
// invalid, the passed ctx will be returned directly instead.
|
|
func (tc TraceContext) Extract(ctx context.Context, carrier TextMapCarrier) context.Context {
|
|
sc := tc.extract(carrier)
|
|
if !sc.IsValid() {
|
|
return ctx
|
|
}
|
|
return trace.ContextWithRemoteSpanContext(ctx, sc)
|
|
}
|
|
|
|
func (TraceContext) extract(carrier TextMapCarrier) trace.SpanContext {
|
|
h := carrier.Get(traceparentHeader)
|
|
if h == "" {
|
|
return trace.SpanContext{}
|
|
}
|
|
|
|
var ver [1]byte
|
|
if !extractPart(ver[:], &h, 2) {
|
|
return trace.SpanContext{}
|
|
}
|
|
version := int(ver[0])
|
|
if version > maxVersion {
|
|
return trace.SpanContext{}
|
|
}
|
|
|
|
var scc trace.SpanContextConfig
|
|
if !extractPart(scc.TraceID[:], &h, 32) {
|
|
return trace.SpanContext{}
|
|
}
|
|
if !extractPart(scc.SpanID[:], &h, 16) {
|
|
return trace.SpanContext{}
|
|
}
|
|
|
|
var opts [1]byte
|
|
if !extractPart(opts[:], &h, 2) {
|
|
return trace.SpanContext{}
|
|
}
|
|
if version == 0 && (h != "" || opts[0] > 2) {
|
|
// version 0 not allow extra
|
|
// version 0 not allow other flag
|
|
return trace.SpanContext{}
|
|
}
|
|
|
|
// Clear all flags other than the trace-context supported sampling bit.
|
|
scc.TraceFlags = trace.TraceFlags(opts[0]) & trace.FlagsSampled // nolint:gosec // slice size already checked.
|
|
|
|
// Ignore the error returned here. Failure to parse tracestate MUST NOT
|
|
// affect the parsing of traceparent according to the W3C tracecontext
|
|
// specification.
|
|
scc.TraceState, _ = trace.ParseTraceState(carrier.Get(tracestateHeader))
|
|
scc.Remote = true
|
|
|
|
sc := trace.NewSpanContext(scc)
|
|
if !sc.IsValid() {
|
|
return trace.SpanContext{}
|
|
}
|
|
|
|
return sc
|
|
}
|
|
|
|
// upperHex detect hex is upper case Unicode characters.
|
|
func upperHex(v string) bool {
|
|
for _, c := range v {
|
|
if c >= 'A' && c <= 'F' {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func extractPart(dst []byte, h *string, n int) bool {
|
|
part, left, _ := strings.Cut(*h, delimiter)
|
|
*h = left
|
|
// hex.Decode decodes unsupported upper-case characters, so exclude explicitly.
|
|
if len(part) != n || upperHex(part) {
|
|
return false
|
|
}
|
|
if p, err := hex.Decode(dst, []byte(part)); err != nil || p != n/2 {
|
|
return false
|
|
}
|
|
return true
|
|
}
|
|
|
|
// Fields returns the keys who's values are set with Inject.
|
|
func (TraceContext) Fields() []string {
|
|
return []string{traceparentHeader, tracestateHeader}
|
|
}
|