Skip to content

Commit 540be64

Browse files
feat: ignore Byteman classes
1 parent 8d02fd5 commit 540be64

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ private static void configureIgnoredTypes(IgnoredTypesBuilder builder) {
4040
.ignoreClass("com.nr.agent.")
4141
.ignoreClass("com.singularity.")
4242
.ignoreClass("com.jinspired.")
43-
.ignoreClass("org.jinspired.");
43+
.ignoreClass("org.jinspired.")
44+
.ignoreClass("org.jboss.byteman.");
4445

4546
// allow JDK HttpClient
4647
builder.allowClass("jdk.internal.net.http.");

0 commit comments

Comments
 (0)