2020-09-09 01:07:59 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
2024-02-29 08:05:28 +02:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2020-09-09 01:07:59 +02:00
|
|
|
|
|
|
|
/*
|
2020-11-13 17:34:24 +02:00
|
|
|
Package propagation contains OpenTelemetry context propagators.
|
2020-09-09 01:07:59 +02:00
|
|
|
|
|
|
|
OpenTelemetry propagators are used to extract and inject context data from and
|
2020-09-22 20:02:31 +02:00
|
|
|
into messages exchanged by applications. The propagator supported by this
|
2020-10-05 17:25:09 +02:00
|
|
|
package is the W3C Trace Context encoding
|
|
|
|
(https://www.w3.org/TR/trace-context/), and W3C Baggage
|
2021-11-24 00:50:38 +02:00
|
|
|
(https://www.w3.org/TR/baggage/).
|
2020-09-09 01:07:59 +02:00
|
|
|
*/
|
2020-11-13 17:34:24 +02:00
|
|
|
package propagation // import "go.opentelemetry.io/otel/propagation"
|