shichaoyuan commented on issue #13635: URL: https://github.com/apache/skywalking/issues/13635#issuecomment-3692055962
> What is you proposed fix? I saw this is from byte buddy itself. https://github.com/apache/skywalking-java/blob/aee6f46cbfb32ac489e738f9172848ba3a3c238f/apm-sniffer/apm-agent/src/main/java/org/apache/skywalking/apm/agent/SkyWalkingAgent.java#L120-L133 ``` static void installClassTransformer(Instrumentation instrumentation, PluginFinder pluginFinder) throws Exception { LOGGER.info("Skywalking agent begin to install transformer ..."); AgentBuilder agentBuilder = newAgentBuilder().ignore( nameStartsWith("net.bytebuddy.") .or(nameStartsWith("org.slf4j.")) .or(nameStartsWith("org.groovy.")) .or(nameContains("javassist")) .or(nameContains(".asm.")) .or(nameContains(".reflectasm.")) .or(nameStartsWith("sun.reflect")) .or(allSkyWalkingAgentExcludeToolkit()) .or(ElementMatchers.isSynthetic())); ``` Is it possible to ignore `nameStartsWith("sun.nio.cs")`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
