We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9966995 commit 3453e65Copy full SHA for 3453e65
dd-java-agent/agent-bootstrap/src/main/java/datadog/trace/bootstrap/Agent.java
@@ -1121,6 +1121,14 @@ && isExplicitlyDisabled(TraceInstrumentationConfig.CODE_ORIGIN_FOR_SPANS_ENABLED
1121
&& isExplicitlyDisabled(DebuggerConfig.DISTRIBUTED_DEBUGGER_ENABLED)) {
1122
return;
1123
}
1124
+ if (ciVisibilityEnabled
1125
+ && !dynamicInstrumentationEnabled
1126
+ && !exceptionReplayEnabled
1127
+ && !codeOriginEnabled
1128
+ && !distributedDebuggerEnabled) {
1129
+ // if CI Visibility is enabled, debugger should be disabled by default
1130
+ return;
1131
+ }
1132
if (!remoteConfigEnabled) {
1133
log.warn("Cannot enable Dynamic Instrumentation because Remote Configuration is not enabled");
1134
0 commit comments