wu-sheng commented on a change in pull request #6913:
URL: https://github.com/apache/skywalking/pull/6913#discussion_r628711347
##########
File path:
apm-sniffer/optional-plugins/mybatis-3.x-plugin/src/main/java/org/apache/skywalking/apm/plugin/mybatis/SqlSessionOperationInterceptor.java
##########
@@ -40,7 +41,8 @@ public void beforeMethod(EnhancedInstance objInst, Method
method, Object[] allAr
if (ContextManager.isActive()) {
lastSpan = ContextManager.activeSpan();
}
- if (lastSpan == null || lastSpan.getComponentId() !=
ComponentsDefine.MYBATIS.getId()) {
+ boolean isMyBatisEntryMethod = !(lastSpan instanceof NoopSpan) &&
(lastSpan == null || lastSpan.getComponentId() !=
ComponentsDefine.MYBATIS.getId());
Review comment:
I would like to recommend you intercept explicit methods rather than
using this check. The existing or new ones are both not good choices. We
actually should not merge this in the beginning.
--
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]