io.opentelemetry.javaagent.instrumentation.jaxrs.v2_0.ResteasyResourceLocatorInvokerInstrumentation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-javaagent-jaxrs-2.0-resteasy-common Show documentation
Show all versions of opentelemetry-javaagent-jaxrs-2.0-resteasy-common Show documentation
Instrumentation of Java libraries using OpenTelemetry.
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.javaagent.instrumentation.jaxrs.v2_0;
import static net.bytebuddy.matcher.ElementMatchers.named;
import static net.bytebuddy.matcher.ElementMatchers.takesArgument;
import io.opentelemetry.context.Context;
import io.opentelemetry.context.Scope;
import io.opentelemetry.instrumentation.api.util.VirtualField;
import io.opentelemetry.javaagent.bootstrap.Java8BytecodeBridge;
import io.opentelemetry.javaagent.bootstrap.jaxrs.JaxrsContextPath;
import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
import io.opentelemetry.javaagent.extension.instrumentation.TypeTransformer;
import net.bytebuddy.asm.Advice;
import net.bytebuddy.description.type.TypeDescription;
import net.bytebuddy.matcher.ElementMatcher;
import org.jboss.resteasy.core.ResourceLocatorInvoker;
public class ResteasyResourceLocatorInvokerInstrumentation implements TypeInstrumentation {
@Override
public ElementMatcher typeMatcher() {
return named("org.jboss.resteasy.core.ResourceLocatorInvoker");
}
@Override
public void transform(TypeTransformer transformer) {
transformer.applyAdviceToMethod(
named("invokeOnTargetObject")
.and(takesArgument(0, named("org.jboss.resteasy.spi.HttpRequest")))
.and(takesArgument(1, named("org.jboss.resteasy.spi.HttpResponse")))
.and(takesArgument(2, Object.class)),
ResteasyResourceLocatorInvokerInstrumentation.class.getName()
+ "$InvokeOnTargetObjectAdvice");
}
@SuppressWarnings("unused")
public static class InvokeOnTargetObjectAdvice {
@Advice.OnMethodEnter(suppress = Throwable.class)
public static void onEnter(
@Advice.This ResourceLocatorInvoker resourceInvoker,
@Advice.Local("otelScope") Scope scope) {
Context currentContext = Java8BytecodeBridge.currentContext();
String name =
VirtualField.find(ResourceLocatorInvoker.class, String.class).get(resourceInvoker);
ResteasySpanName.INSTANCE.updateServerSpanName(currentContext, name);
// subresource locator returns a resources class that may have @Path annotations
// append current path to jax-rs context path so that it would be present in the final path
Context context =
JaxrsContextPath.init(currentContext, JaxrsContextPath.prepend(currentContext, name));
if (context != null) {
scope = context.makeCurrent();
}
}
@Advice.OnMethodExit(onThrowable = Throwable.class, suppress = Throwable.class)
public static void onExit(@Advice.Local("otelScope") Scope scope) {
if (scope != null) {
scope.close();
}
}
}
}