Skip to content

Commit 7f3ae3b

Browse files
committed
kotlinx + integration tests
1 parent 26e79f9 commit 7f3ae3b

File tree

6 files changed

+6
-75
lines changed

6 files changed

+6
-75
lines changed

instrumentation/kotlinx-coroutines/kotlinx-coroutines-1.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/kotlinxcoroutines/instrumentationannotations/AnnotationInstrumentationModule.java

-6
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,6 @@ public AnnotationInstrumentationModule() {
2626
"opentelemetry-instrumentation-annotations");
2727
}
2828

29-
@Override
30-
public boolean isIndyModule() {
31-
// needs helper classes in the same class loader
32-
return false;
33-
}
34-
3529
@Override
3630
public int order() {
3731
// Run first to ensure other automatic instrumentation is added after and therefore is executed

testing-common/integration-tests/build.gradle.kts

-2
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,13 @@ tasks {
5252
includeTestsMatching("InstrumentOldBytecode")
5353
}
5454
include("**/InstrumentOldBytecode.*")
55-
jvmArgs("-Dotel.instrumentation.inline-ibm-resource-level.enabled=false")
5655
}
5756

5857
val testInlineModuleOldBytecodeInstrumentation by registering(Test::class) {
5958
filter {
6059
includeTestsMatching("InstrumentOldBytecode")
6160
}
6261
include("**/InstrumentOldBytecode.*")
63-
jvmArgs("-Dotel.instrumentation.indy-ibm-resource-level.enabled=false")
6462
}
6563

6664
test {

testing-common/integration-tests/src/main/java/InlineIbmResourceLevelInstrumentationModule.java testing-common/integration-tests/src/main/java/IbmResourceLevelInstrumentationModule.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
import java.util.List;
1212

1313
@AutoService(InstrumentationModule.class)
14-
public class InlineIbmResourceLevelInstrumentationModule extends InstrumentationModule {
15-
public InlineIbmResourceLevelInstrumentationModule() {
16-
super("inline-ibm-resource-level");
14+
public class IbmResourceLevelInstrumentationModule extends InstrumentationModule {
15+
public IbmResourceLevelInstrumentationModule() {
16+
super("ibm-resource-level");
1717
}
1818

1919
@Override
2020
public List<TypeInstrumentation> typeInstrumentations() {
21-
return singletonList(new InlineResourceLevelInstrumentation());
21+
return singletonList(new ResourceLevelInstrumentation());
2222
}
2323
}

testing-common/integration-tests/src/main/java/IndyIbmResourceLevelInstrumentationModule.java

-28
This file was deleted.

testing-common/integration-tests/src/main/java/InlineResourceLevelInstrumentation.java

-33
This file was deleted.

testing-common/integration-tests/src/main/java/IndyResourceLevelInstrumentation.java testing-common/integration-tests/src/main/java/ResourceLevelInstrumentation.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import net.bytebuddy.description.type.TypeDescription;
1212
import net.bytebuddy.matcher.ElementMatcher;
1313

14-
public class IndyResourceLevelInstrumentation implements TypeInstrumentation {
14+
public class ResourceLevelInstrumentation implements TypeInstrumentation {
1515
@Override
1616
public ElementMatcher<TypeDescription> typeMatcher() {
1717
return named("com.ibm.as400.resource.ResourceLevel");
@@ -25,7 +25,7 @@ public void transform(TypeTransformer transformer) {
2525

2626
@SuppressWarnings("unused")
2727
public static class ToStringAdvice {
28-
@Advice.OnMethodExit(suppress = Throwable.class, inline = false)
28+
@Advice.OnMethodExit(suppress = Throwable.class)
2929
@Advice.AssignReturned.ToReturned
3030
public static String toStringReplace() {
3131
return "instrumented";

0 commit comments

Comments
 (0)