Update InterceptPoint.java (#1776)

Using Mongo 2.14.3, we found that :" java. lang. ClassNotFoundException: Can't find MongoDBCollection Method Interceptor",  must use "org.apache.skywalking.apm.plugin.mongodb.v2.MongoDBCollectionMethodInterceptor" to solve this problem.
This commit is contained in:
cheetah012 2018-10-16 22:24:06 +08:00 committed by 吴晟 Wu Sheng
parent f78abfb28c
commit c838d1610f
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ import org.apache.skywalking.apm.agent.core.plugin.interceptor.InstanceMethodsIn
* @author liyuntao
*/
public abstract class InterceptPoint implements InstanceMethodsInterceptPoint {
private static final String MONGDB_METHOD_INTERCET_CLASS = "MongoDBCollectionMethodInterceptor";
private static final String MONGDB_METHOD_INTERCET_CLASS = "org.apache.skywalking.apm.plugin.mongodb.v2.MongoDBCollectionMethodInterceptor";
@Override
public String getMethodsInterceptor() {