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/instrumentation/jdbc/src/main/java/datadog/trace/instrumentation/jdbc/StatementInstrumentation.java
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -123,6 +123,10 @@ public static AgentScope onEnter(
123
123
span.setTag(DBM_TRACE_INJECTED, true);
124
124
}
125
125
}
126
+
// For SQL Server and Oracle, trace context is propagated via
127
+
// context_info and v$session.action respectively.
128
+
// we should not also inject it into SQL comments to avoid duplication
0 commit comments