You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dd-java-agent/agent-bootstrap/src/main/java/datadog/trace/bootstrap/instrumentation/decorator/HttpServerDecorator.java
+18-9Lines changed: 18 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -138,16 +138,17 @@ public Context extract(REQUEST_CARRIER carrier) {
138
138
* Starts a span.
139
139
*
140
140
* @param carrier The request carrier.
141
-
* @param context The parent context of the span to create.
141
+
* @param parentContext The parent context of the span to create.
142
142
* @return A new context bundling the span, child of the given parent context.
Copy file name to clipboardExpand all lines: dd-java-agent/instrumentation/play-2.3/src/main/java/datadog/trace/instrumentation/play23/PlayHttpServerDecorator.java
Copy file name to clipboardExpand all lines: dd-java-agent/instrumentation/play-2.4/src/main/java/datadog/trace/instrumentation/play24/PlayHttpServerDecorator.java
Copy file name to clipboardExpand all lines: dd-java-agent/instrumentation/play-2.6/src/main/java/datadog/trace/instrumentation/play26/PlayHttpServerDecorator.java
Copy file name to clipboardExpand all lines: dd-java-agent/instrumentation/servlet/request-2/src/main/java/datadog/trace/instrumentation/servlet2/Servlet2Decorator.java
Copy file name to clipboardExpand all lines: dd-java-agent/instrumentation/servlet/request-3/src/main/java/datadog/trace/instrumentation/servlet3/Servlet3Decorator.java
Copy file name to clipboardExpand all lines: dd-java-agent/instrumentation/spring/spring-webmvc/spring-webmvc-3.1/src/main/java/datadog/trace/instrumentation/springweb/SpringWebHttpServerDecorator.java
Copy file name to clipboardExpand all lines: dd-java-agent/instrumentation/spring/spring-webmvc/spring-webmvc-6.0/src/main/java17/datadog/trace/instrumentation/springweb6/SpringWebHttpServerDecorator.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,7 @@ public AgentSpan onRequest(
101
101
finalAgentSpanspan,
102
102
finalHttpServletRequestconnection,
103
103
finalHttpServletRequestrequest,
104
-
finalContextcontext) {
104
+
finalContextparentContext) {
105
105
// FIXME: adding a filter to avoid resource name to be overridden on redirect and forwards.
106
106
// Remove myself when jakarta.servlet will be available
107
107
if (request != null && request.getAttribute(DD_FILTERED_SPRING_ROUTE_ALREADY_APPLIED) == null) {
Copy file name to clipboardExpand all lines: dd-java-agent/instrumentation/synapse-3/src/main/java/datadog/trace/instrumentation/synapse3/SynapseServerInstrumentation.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ public static ContextScope beginRequest(
Copy file name to clipboardExpand all lines: dd-java-agent/instrumentation/tomcat-5.5-common/src/main/java/datadog/trace/instrumentation/tomcat/TomcatDecorator.java
0 commit comments