1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-04-04 22:14:17 +02:00

Add example for SetTextMapPropagator (#6579)

Example demonstrating how to use `SetTextMapPropagator` with a composite
propagator

Related Issue: Closes #6571

Co-authored-by: Damien Mathieu <42@dmathieu.com>
This commit is contained in:
Jono 2025-04-02 01:10:54 +11:00 committed by GitHub
parent 1b32b1df3a
commit f23f25a7dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,20 @@
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package propagation_test
import (
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/propagation"
)
func ExampleSetTextMapPropagator() {
// Create a new composite text map propagator.
propagator := propagation.NewCompositeTextMapPropagator(
propagation.TraceContext{},
propagation.Baggage{},
)
// Set it as the global text map propagator.
otel.SetTextMapPropagator(propagator)
}