Merge pull request #295 from DataDog/ark/enable_async_instrumentation

Enable executor instrumentation by default
This commit is contained in:
Andrew Kent 2018-04-30 17:39:14 -07:00 committed by GitHub
commit 11ecff0726
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 0 additions and 19 deletions

View File

@ -3,9 +3,6 @@ import datadog.trace.agent.test.AgentTestRunner
import spock.lang.Unroll
class AkkaActorTest extends AgentTestRunner {
static {
System.setProperty("dd.integration.java_concurrent.enabled", "true")
}
@Override
void afterTest() {

View File

@ -2,10 +2,6 @@ import datadog.opentracing.DDSpan
import datadog.trace.agent.test.AgentTestRunner
class ScalaInstrumentationTest extends AgentTestRunner {
static {
System.setProperty("dd.integration.java_concurrent.enabled", "true")
}
@Override
void afterTest() {
// Ignore failures to instrument sun proxy classes

View File

@ -86,11 +86,6 @@ public final class ExecutorInstrumentation extends Instrumenter.Configurable {
super(EXEC_NAME);
}
@Override
protected boolean defaultEnabled() {
return false;
}
@Override
public AgentBuilder apply(final AgentBuilder agentBuilder) {
return agentBuilder

View File

@ -69,11 +69,6 @@ public final class FutureInstrumentation extends Instrumenter.Configurable {
super(ExecutorInstrumentation.EXEC_NAME);
}
@Override
protected boolean defaultEnabled() {
return false;
}
@Override
public AgentBuilder apply(final AgentBuilder agentBuilder) {
return agentBuilder

View File

@ -9,7 +9,6 @@ import spock.lang.Shared
class Play26Test extends AgentTestRunner {
static {
System.setProperty("dd.integration.java_concurrent.enabled", "true")
System.setProperty("dd.integration.play.enabled", "true")
}

View File

@ -9,7 +9,6 @@ import spock.lang.Shared
class Play24Test extends AgentTestRunner {
static {
System.setProperty("dd.integration.java_concurrent.enabled", "true")
System.setProperty("dd.integration.play.enabled", "true")
}