Propagating Go Trace Context
이 페이지는 아직 한국어로 제공되지 않으며 번역 작업 중입니다. 번역에 관한 질문이나 의견이 있으시면 언제든지 저희에게 연락해 주십시오.
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/extraction styles. Supported styles are:
tracecontext
, Datadog
, B3
, and B3 single header
.
- Configure injection styles using the
DD_TRACE_PROPAGATION_STYLE_INJECT=tracecontext,B3
environment variable. - Configure extraction styles using the
DD_TRACE_PROPAGATION_STYLE_EXTRACT=tracecontext,B3
environment variable. - Configure both injection and extraction styles using the
DD_TRACE_PROPAGATION_STYLE=tracecontext,B3
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
Additional helpful documentation, links, and articles: