io.opentelemetry.javaagent.instrumentation.mongoasync.v3_3.MongoAsyncClientInstrumentationModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-javaagent-mongo-async-3.3 Show documentation
Show all versions of opentelemetry-javaagent-mongo-async-3.3 Show documentation
Instrumentation of Java libraries using OpenTelemetry.
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.javaagent.instrumentation.mongoasync.v3_3;
import static io.opentelemetry.javaagent.extension.matcher.AgentElementMatchers.hasClassesNamed;
import static java.util.Arrays.asList;
import com.google.auto.service.AutoService;
import io.opentelemetry.javaagent.extension.instrumentation.InstrumentationModule;
import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
import java.util.List;
import net.bytebuddy.matcher.ElementMatcher;
@AutoService(InstrumentationModule.class)
public class MongoAsyncClientInstrumentationModule extends InstrumentationModule {
public MongoAsyncClientInstrumentationModule() {
super("mongo-async", "mongo-async-3.3", "mongo");
}
@Override
public ElementMatcher.Junction classLoaderMatcher() {
return hasClassesNamed("com.mongodb.async.client.MongoClientSettings$Builder");
}
@Override
public List typeInstrumentations() {
return asList(
new MongoClientSettingsBuildersInstrumentation(),
new InternalStreamConnectionInstrumentation(),
new BaseClusterInstrumentation());
}
}