io.opentelemetry.javaagent.instrumentation.opentelemetryapi.ContextInstrumentation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-javaagent-opentelemetry-api-1.0 Show documentation
Show all versions of opentelemetry-javaagent-opentelemetry-api-1.0 Show documentation
Instrumentation of Java libraries using OpenTelemetry.
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.javaagent.instrumentation.opentelemetryapi;
import static net.bytebuddy.matcher.ElementMatchers.isMethod;
import static net.bytebuddy.matcher.ElementMatchers.isStatic;
import static net.bytebuddy.matcher.ElementMatchers.named;
import application.io.opentelemetry.context.Context;
import application.io.opentelemetry.context.ContextStorage;
import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
import io.opentelemetry.javaagent.extension.instrumentation.TypeTransformer;
import io.opentelemetry.javaagent.instrumentation.opentelemetryapi.context.AgentContextStorage;
import net.bytebuddy.asm.Advice;
import net.bytebuddy.description.type.TypeDescription;
import net.bytebuddy.matcher.ElementMatcher;
/**
* Returns {@link AgentContextStorage} as the implementation of {@link ContextStorage} in the
* application classpath. We do this instead of using the normal service loader mechanism to make
* sure there is no dependency on a system property or possibility of a user overriding this since
* it's required for instrumentation in the agent to work properly.
*/
public class ContextInstrumentation implements TypeInstrumentation {
@Override
public ElementMatcher typeMatcher() {
return named("application.io.opentelemetry.context.ArrayBasedContext");
}
@Override
public void transform(TypeTransformer transformer) {
transformer.applyAdviceToMethod(
isMethod().and(isStatic()).and(named("root")),
ContextInstrumentation.class.getName() + "$WrapRootAdvice");
}
@SuppressWarnings("unused")
public static class WrapRootAdvice {
@Advice.OnMethodExit(onThrowable = Throwable.class, suppress = Throwable.class)
public static void methodExit(@Advice.Return(readOnly = false) Context root) {
root = AgentContextStorage.wrapRootContext(root);
}
}
}