File: doc.go

package info (click to toggle)
golang-opentelemetry-contrib 0.56.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,884 kB
  • sloc: makefile: 278; sh: 211; sed: 1
file content (12 lines) | stat: -rw-r--r-- 713 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

// Package autoprop provides an OpenTelemetry TextMapPropagator creation
// function. The OpenTelemetry specification states that the default
// TextMapPropagator needs to be a no-operation implementation. The
// opentelemetry-go project adheres to this requirement. However, for systems
// that perform propagation this default is not ideal. This package provides a
// TextMapPropagator with useful defaults (a combined TraceContext and Baggage
// TextMapPropagator), and supports environment overrides using the
// OTEL_PROPAGATORS environment variable.
package autoprop // import "go.opentelemetry.io/contrib/propagators/autoprop"