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