EvanLjp commented on pull request #5426:
URL: https://github.com/apache/skywalking/pull/5426#issuecomment-687687663
@wu-sheng When I add a spring plugin test, I generate a module named
exception checker spring. And the default package name starts with
org.apache.skywalking.apm.testcase. But when I run the manual test case, no
spring span will be created.
So I read the agent source code, found the following codes:
```
private static ElementMatcher.Junction<NamedElement>
allSkyWalkingAgentExcludeToolkit() {
return
nameStartsWith("org.apache.skywalking.").and(not(nameStartsWith("org.apache.skywalking.apm.toolkit.")));
}
```
Wheather to add a new package name named
"org.apache.skywalking.apm.testcase" here , or has another way to solve it.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]