-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add draft inferred proxy spans as http request parent
- Loading branch information
1 parent
c527f13
commit 934f400
Showing
10 changed files
with
800 additions
and
3 deletions.
There are no files selected for viewing
385 changes: 383 additions & 2 deletions
385
.../src/main/java/datadog/trace/bootstrap/instrumentation/decorator/HttpServerDecorator.java
Large diffs are not rendered by default.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
.../main/java/datadog/trace/bootstrap/instrumentation/decorator/HttpServerDecorator.java.rej
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
diff a/dd-java-agent/agent-bootstrap/src/main/java/datadog/trace/bootstrap/instrumentation/decorator/HttpServerDecorator.java b/dd-java-agent/agent-bootstrap/src/main/java/datadog/trace/bootstrap/instrumentation/decorator/HttpServerDecorator.java (rejected hunks) | ||
@@ -150,7 +523,7 @@ public abstract class HttpServerDecorator<REQUEST, CONNECTION, RESPONSE, REQUEST | ||
if (null != carrier && null != getter) { | ||
tracer().getDataStreamsMonitoring().setCheckpoint(span, SERVER_PATHWAY_EDGE_TAGS, 0, 0); | ||
} | ||
- return span; | ||
+ return new MySpan(apiGtwSpan, span); | ||
} | ||
|
||
public AgentSpan onRequest( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.