Propagating Python Trace Context
Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel,
n'hésitez pas à nous contacter.
The Datadog APM tracer supports extraction and injection of B3 and W3C Trace Context headers for distributed tracing.
Distributed headers injection and extraction is controlled by
configuring injection and extraction styles. Supported styles are:
tracecontext
, datadog
, b3multi
and b3 single header
.
- Configure injection styles using the
DD_TRACE_PROPAGATION_STYLE_INJECT=tracecontext,b3mutli
environment variable. - Configure extraction styles using the
DD_TRACE_PROPAGATION_STYLE_EXTRACT=tracecontext,b3multi
environment variable. - Configure both injection and extraction styles using the
DD_TRACE_PROPAGATION_STYLE=tracecontext,b3multi
environment variable.
The values of these environment variables are comma-separated lists of
header styles enabled for injection or extraction. By default,
the tracecontext,Datadog
styles are enabled.
To disable trace context propagation, set the value of the environment variables to none
.
- Disable injection styles using the
DD_TRACE_PROPAGATION_STYLE_INJECT=none
environment variable. - Disable extraction styles using the
DD_TRACE_PROPAGATION_STYLE_EXTRACT=none
environment variable. - Disable all trace context propagation (both inject and extract) using the
DD_TRACE_PROPAGATION_STYLE=none
environment variable.
If multiple environment variables are set, DD_TRACE_PROPAGATION_STYLE_INJECT
and DD_TRACE_PROPAGATION_STYLE_EXTRACT
override any value provided in DD_TRACE_PROPAGATION_STYLE
.
If multiple extraction styles are enabled, extraction attempts are made
in the order that those styles are specified. The first successfully
extracted value is used.
Further Reading
Documentation, liens et articles supplémentaires utiles: