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 f95c793 commit e157c1cCopy full SHA for e157c1c
otel-extensions/src/main/java/org/hypertrace/agent/otel/extensions/HypertraceGlobalIgnoreMatcher.java
@@ -38,6 +38,15 @@ public Result type(net.bytebuddy.description.type.TypeDescription target) {
38
39
@Override
40
public Result classloader(ClassLoader classLoader) {
41
+ // bootstrap
42
+ if (classLoader == null) {
43
+ return Result.DEFAULT;
44
+ }
45
+
46
+ String name = classLoader.getClass().getName();
47
+ if (name.startsWith("com.singularity.")) {
48
+ return Result.IGNORE;
49
50
return Result.DEFAULT;
51
}
52
0 commit comments