Skip to content

Commit 310cb41

Browse files
committed
Add Apolloconfig Inst
#12787
1 parent 83ce10e commit 310cb41

File tree

6 files changed

+152
-151
lines changed

6 files changed

+152
-151
lines changed

docs/supported-libraries.md

+137-137
Large diffs are not rendered by default.

instrumentation/apolloconfig-apolloclient-1.0/javaagent/build.gradle.kts

+5-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ muzzle {
66
pass {
77
group.set("com.ctrip.framework.apollo")
88
module.set("apollo-client")
9-
versions.set("[1.0.0,2.3.0]")
9+
versions.set("[1.0.0,)")
1010
assertInverse.set(true)
1111
}
1212
}
@@ -15,15 +15,13 @@ dependencies {
1515
compileOnly("com.google.auto.value:auto-value-annotations")
1616
annotationProcessor("com.google.auto.value:auto-value")
1717

18-
library("com.ctrip.framework.apollo:apollo-client:1.1.0")
18+
library("com.ctrip.framework.apollo:apollo-client:1.0.0")
1919

20+
testImplementation("com.ctrip.framework.apollo:apollo-client:1.1.0")
2021
testImplementation(project(":testing-common"))
21-
22-
latestDepTestLibrary("com.ctrip.framework.apollo:apollo-client:1.1.+")
2322
}
2423

2524
tasks.withType<Test>().configureEach {
26-
// required on jdk17
27-
jvmArgs("--add-opens=java.base/java.lang=ALL-UNNAMED")
28-
jvmArgs("-XX:+IgnoreUnrecognizedVMOptions")
25+
jvmArgs("-Dotel.instrumentation.apolloconfig-apolloclient.enabled=true")
2926
}
27+

instrumentation/apolloconfig-apolloclient-1.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/apolloconfig/apolloclient/v1_0/ApolloConfigInstrumentationModule.java

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
import com.google.auto.service.AutoService;
1111
import io.opentelemetry.javaagent.extension.instrumentation.InstrumentationModule;
1212
import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
13+
import io.opentelemetry.sdk.autoconfigure.spi.ConfigProperties;
1314
import java.util.List;
1415

1516
@AutoService(InstrumentationModule.class)
@@ -22,4 +23,9 @@ public ApolloConfigInstrumentationModule() {
2223
public List<TypeInstrumentation> typeInstrumentations() {
2324
return singletonList(new ApolloRepositoryChangeInstrumentation());
2425
}
26+
27+
@Override
28+
public boolean defaultEnabled(ConfigProperties config) {
29+
return false;
30+
}
2531
}

instrumentation/apolloconfig-apolloclient-1.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/apolloconfig/apolloclient/v1_0/ApolloConfigSingletons.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void onEnd(
6363
}
6464
})
6565
.addAttributesExtractor(attributesExtractor)
66-
.buildInstrumenter(SpanKindExtractor.alwaysClient());
66+
.buildInstrumenter(SpanKindExtractor.alwaysInternal());
6767
}
6868

6969
public static Instrumenter<String, Void> instrumenter() {

instrumentation/apolloconfig-apolloclient-1.0/javaagent/src/test/java/io/opentelemetry/javaagent/instrumentation/apolloconfig/apolloclient/v1_0/ApolloRepositoryChangeTest.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,11 @@ void fireRepositoryChangeTest() {
3333
testConfigRepository.addChangeListener(new TestRepositoryChangeListener());
3434
testConfigRepository.sync();
3535

36-
checkRepositoryChange(namespace);
37-
}
38-
39-
private static void checkRepositoryChange(String namespace) {
4036
testing.waitAndAssertTraces(
4137
trace ->
4238
trace.hasSpansSatisfyingExactly(
4339
span ->
44-
span.hasKind(SpanKind.CLIENT)
40+
span.hasKind(SpanKind.INTERNAL)
4541
.hasName("Apollo Config Repository Change")
4642
.hasAttributesSatisfyingExactly(
4743
singletonList(

javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/ignore/AdditionalLibraryIgnoredTypesConfigurer.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,8 @@ public void configure(IgnoredTypesBuilder builder) {
253253
// We instrument Runnable there
254254
.allowClass("com.google.inject.internal.AbstractBindingProcessor$")
255255
.allowClass("com.google.inject.internal.BytecodeGen$")
256-
.allowClass("com.google.inject.internal.cglib.core.internal.$LoadingCache$");
256+
.allowClass("com.google.inject.internal.cglib.core.internal.$LoadingCache$")
257+
.allowClass("com.google.inject.internal.aop.ChildClassDefiner$ChildLoader");
257258

258259
builder.ignoreClass("com.google.api.").allowClass("com.google.api.client.http.HttpRequest");
259260

0 commit comments

Comments
 (0)