Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure Propagators are still run when DD_TRACE_PROPAGATION_BEHAVIOR_EXTRACT=ignore #8604

Merged
merged 6 commits into from
Mar 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 23 additions & 20 deletions dd-trace-core/src/main/java/datadog/trace/core/CoreTracer.java
Original file line number Diff line number Diff line change
Expand Up @@ -1514,28 +1514,31 @@ private DDSpanContext buildSpanContext() {
String parentServiceName = null;
boolean isRemote = false;

if (parentContext != null
&& parentContext.isRemote()
&& Config.get().getTracePropagationBehaviorExtract()
== TracePropagationBehaviorExtract.RESTART) {
SpanLink link;
if (parentContext instanceof ExtractedContext) {
ExtractedContext pc = (ExtractedContext) parentContext;
link =
DDSpanLink.from(
pc,
SpanAttributes.builder()
.put("reason", "propagation_behavior_extract")
.put("context_headers", pc.getPropagationStyle().toString())
.build());
} else {
link = SpanLink.from(parentContext);
TracePropagationBehaviorExtract behaviorExtract =
Config.get().getTracePropagationBehaviorExtract();
if (parentContext != null && parentContext.isRemote()) {
if (behaviorExtract == TracePropagationBehaviorExtract.IGNORE) {
// reset links that may have come terminated span links
links = new ArrayList<>();
parentContext = null;
} else if (behaviorExtract == TracePropagationBehaviorExtract.RESTART) {
links = new ArrayList<>();
SpanLink link =
(parentContext instanceof ExtractedContext)
? DDSpanLink.from(
(ExtractedContext) parentContext,
SpanAttributes.builder()
.put("reason", "propagation_behavior_extract")
.put(
"context_headers",
((ExtractedContext) parentContext).getPropagationStyle().toString())
.build())
: SpanLink.from(parentContext);
links.add(link);
parentContext = null;
}
// reset links that may have come terminated span links
links = new ArrayList<>();
links.add(link);
parentContext = null;
}

// Propagate internal trace.
// Note: if we are not in the context of distributed tracing and we are starting the first
// root span, parentContext will be null at this point.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,22 @@ class CoreSpanBuilderTest extends DDCoreSpecification {
link.traceState() == extractedContext.propagationTags.headerValue(PropagationTags.HeaderType.W3C)
}

def "build context from ExtractedContext with TRACE_PROPAGATION_BEHAVIOR_EXTRACT=ignore"() {
setup:
injectSysConfig("trace.propagation.behavior.extract", "ignore")
def extractedContext = new ExtractedContext(DDTraceId.ONE, 2, PrioritySampling.SAMPLER_DROP, null, 0, [:], [:], null, PropagationTags.factory().fromHeaderValue(PropagationTags.HeaderType.DATADOG, "_dd.p.dm=934086a686-4,_dd.p.anytag=value"), null, DATADOG)
final DDSpan span = tracer.buildSpan("test", "op name")
.asChildOf(extractedContext).start()

expect:
span.traceId != extractedContext.traceId
span.parentId != extractedContext.spanId
span.samplingPriority() == PrioritySampling.UNSET


assert span.links.size() == 0
}

def "TagContext should populate default span details"() {
setup:
def thread = Thread.currentThread()
Expand Down
8 changes: 1 addition & 7 deletions internal-api/src/main/java/datadog/trace/api/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -1042,14 +1042,8 @@ private Config(final ConfigProvider configProvider, final InstrumenterConfig ins
}
// Now we can check if we should pick the default injection/extraction

if (extract.isEmpty()) {
extract = DEFAULT_TRACE_PROPAGATION_STYLE;
}

tracePropagationStylesToExtract =
tracePropagationBehaviorExtract == TracePropagationBehaviorExtract.IGNORE
? new HashSet<>()
: extract;
extract.isEmpty() ? DEFAULT_TRACE_PROPAGATION_STYLE : extract;

tracePropagationStylesToInject = inject.isEmpty() ? DEFAULT_TRACE_PROPAGATION_STYLE : inject;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2679,20 +2679,6 @@ class ConfigTest extends DDSpecification {
config.finalDebuggerSymDBUrl == "http://localhost:8126/symdb/v1/input"
}

def "specify overrides for PROPAGATION_STYLE_EXTRACT when TRACE_PROPAGATION_BEHAVIOR_EXTRACT=ignore"() {
setup:
def prop = new Properties()
prop.setProperty(PROPAGATION_STYLE_EXTRACT, "Datadog, B3")
prop.setProperty(TRACE_PROPAGATION_BEHAVIOR_EXTRACT, "ignore")

when:
Config config = Config.get(prop)

then:
config.tracePropagationBehaviorExtract == TracePropagationBehaviorExtract.IGNORE
config.tracePropagationStylesToExtract.toList() == []
}

def "verify try/catch behavior for invalid strings for TRACE_PROPAGATION_BEHAVIOR_EXTRACT"() {
setup:
def prop = new Properties()
Expand Down