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:
parent
1b32b1df3a
commit
f23f25a7dc
20
propagation/example_test.go
Normal file
20
propagation/example_test.go
Normal 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)
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user