2021-08-09 07:19:24 +00:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2024-08-19 08:01:33 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2021-08-09 07:19:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Package propagation contains OpenTelemetry context propagators.
|
|
|
|
|
|
|
|
OpenTelemetry propagators are used to extract and inject context data from and
|
|
|
|
into messages exchanged by applications. The propagator supported by this
|
|
|
|
package is the W3C Trace Context encoding
|
|
|
|
(https://www.w3.org/TR/trace-context/), and W3C Baggage
|
2023-02-01 17:06:36 +00:00
|
|
|
(https://www.w3.org/TR/baggage/).
|
2021-08-09 07:19:24 +00:00
|
|
|
*/
|
|
|
|
package propagation // import "go.opentelemetry.io/otel/propagation"
|