You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-08-10 22:31:50 +02:00
* Add `ValuesGetter` interface, an optional `TextMapCarrier` feature that adds `Values(string) []string`. * `HeaderCarrier` implements `ValuesGetter`. * Change `Baggage` to use the `Values()` method if it's implemented. Notable comment: https://github.com/open-telemetry/opentelemetry-go/pull/5973#discussion_r2074894706 Adds tests extracting requests with multiple 'baggage' headers set. Does not introduce any breaking changes or alter any existing tests. Spec issue: https://github.com/open-telemetry/opentelemetry-specification/issues/433 Corresponding Java prototype: https://github.com/open-telemetry/opentelemetry-java/pull/6852 --------- Co-authored-by: Robert Pająk <pellared@hotmail.com> Co-authored-by: dmathieu <42@dmathieu.com>
78 lines
2.1 KiB
Go
78 lines
2.1 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package propagation // import "go.opentelemetry.io/otel/propagation"
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.opentelemetry.io/otel/baggage"
|
|
)
|
|
|
|
const baggageHeader = "baggage"
|
|
|
|
// Baggage is a propagator that supports the W3C Baggage format.
|
|
//
|
|
// This propagates user-defined baggage associated with a trace. The complete
|
|
// specification is defined at https://www.w3.org/TR/baggage/.
|
|
type Baggage struct{}
|
|
|
|
var _ TextMapPropagator = Baggage{}
|
|
|
|
// Inject sets baggage key-values from ctx into the carrier.
|
|
func (b Baggage) Inject(ctx context.Context, carrier TextMapCarrier) {
|
|
bStr := baggage.FromContext(ctx).String()
|
|
if bStr != "" {
|
|
carrier.Set(baggageHeader, bStr)
|
|
}
|
|
}
|
|
|
|
// Extract returns a copy of parent with the baggage from the carrier added.
|
|
// If carrier implements [ValuesGetter] (e.g. [HeaderCarrier]), Values is invoked
|
|
// for multiple values extraction. Otherwise, Get is called.
|
|
func (b Baggage) Extract(parent context.Context, carrier TextMapCarrier) context.Context {
|
|
if multiCarrier, ok := carrier.(ValuesGetter); ok {
|
|
return extractMultiBaggage(parent, multiCarrier)
|
|
}
|
|
return extractSingleBaggage(parent, carrier)
|
|
}
|
|
|
|
// Fields returns the keys who's values are set with Inject.
|
|
func (b Baggage) Fields() []string {
|
|
return []string{baggageHeader}
|
|
}
|
|
|
|
func extractSingleBaggage(parent context.Context, carrier TextMapCarrier) context.Context {
|
|
bStr := carrier.Get(baggageHeader)
|
|
if bStr == "" {
|
|
return parent
|
|
}
|
|
|
|
bag, err := baggage.Parse(bStr)
|
|
if err != nil {
|
|
return parent
|
|
}
|
|
return baggage.ContextWithBaggage(parent, bag)
|
|
}
|
|
|
|
func extractMultiBaggage(parent context.Context, carrier ValuesGetter) context.Context {
|
|
bVals := carrier.Values(baggageHeader)
|
|
if len(bVals) == 0 {
|
|
return parent
|
|
}
|
|
var members []baggage.Member
|
|
for _, bStr := range bVals {
|
|
currBag, err := baggage.Parse(bStr)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
members = append(members, currBag.Members()...)
|
|
}
|
|
|
|
b, err := baggage.New(members...)
|
|
if err != nil || b.Len() == 0 {
|
|
return parent
|
|
}
|
|
return baggage.ContextWithBaggage(parent, b)
|
|
}
|