io.quarkus.micrometer.runtime.export.exemplars.NoopOpenTelemetryExemplarContextUnwrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-micrometer Show documentation
Show all versions of quarkus-micrometer Show documentation
Instrument the runtime and your application with dimensional metrics using Micrometer.
package io.quarkus.micrometer.runtime.export.exemplars;
import java.util.function.Function;
import jakarta.enterprise.context.Dependent;
import io.vertx.core.Context;
@Dependent
public class NoopOpenTelemetryExemplarContextUnwrapper implements OpenTelemetryContextUnwrapper {
@Override
public R executeInContext(Function
methodReference, P parameter, Context requestContext) {
return methodReference.apply(parameter);// pass through
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy