Interface InstrumentBuildTimeConfig
public interface InstrumentBuildTimeConfig
-
Method Summary
Modifier and TypeMethodDescriptionbooleangrpc()Enables instrumentation for gRPC.booleanEnables instrumentation for Messaging.booleanrest()Enables instrumentation for Quarkus REST.booleanresteasy()Enables instrumentation for RESTEasy Classic.booleanEnables instrumentation for REST Client backed by RESTEasy Classic.
-
Method Details
-
grpc
@WithDefault("true") boolean grpc()Enables instrumentation for gRPC. -
messaging
@WithDefault("true") boolean messaging()Enables instrumentation for Messaging. -
resteasyClient
@WithDefault("true") boolean resteasyClient()Enables instrumentation for REST Client backed by RESTEasy Classic. -
rest
@WithDefault("true") boolean rest()Enables instrumentation for Quarkus REST. -
resteasy
@WithDefault("true") boolean resteasy()Enables instrumentation for RESTEasy Classic.
-