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:
parent
f78abfb28c
commit
c838d1610f
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue