|
| 1 | +package datadog.trace.instrumentation.reactor.core; |
| 2 | + |
| 3 | +import static datadog.trace.agent.tooling.bytebuddy.matcher.HierarchyMatchers.hasSuperType; |
| 4 | +import static datadog.trace.agent.tooling.bytebuddy.matcher.HierarchyMatchers.implementsInterface; |
| 5 | +import static datadog.trace.agent.tooling.bytebuddy.matcher.NameMatchers.named; |
| 6 | +import static datadog.trace.agent.tooling.bytebuddy.matcher.NameMatchers.namedOneOf; |
| 7 | +import static datadog.trace.bootstrap.instrumentation.api.AgentTracer.activateSpan; |
| 8 | +import static datadog.trace.instrumentation.reactor.core.ContextSpanHelper.extractSpanFromSubscriberContext; |
| 9 | +import static net.bytebuddy.matcher.ElementMatchers.isStatic; |
| 10 | +import static net.bytebuddy.matcher.ElementMatchers.not; |
| 11 | +import static net.bytebuddy.matcher.ElementMatchers.takesArgument; |
| 12 | +import static net.bytebuddy.matcher.ElementMatchers.takesArguments; |
| 13 | + |
| 14 | +import com.google.auto.service.AutoService; |
| 15 | +import datadog.trace.agent.tooling.Instrumenter; |
| 16 | +import datadog.trace.agent.tooling.InstrumenterModule; |
| 17 | +import datadog.trace.bootstrap.InstrumentationContext; |
| 18 | +import datadog.trace.bootstrap.instrumentation.api.AgentScope; |
| 19 | +import datadog.trace.bootstrap.instrumentation.api.AgentSpan; |
| 20 | +import java.util.HashMap; |
| 21 | +import java.util.Map; |
| 22 | +import net.bytebuddy.asm.Advice; |
| 23 | +import net.bytebuddy.description.type.TypeDescription; |
| 24 | +import net.bytebuddy.matcher.ElementMatcher; |
| 25 | +import org.reactivestreams.Publisher; |
| 26 | +import org.reactivestreams.Subscriber; |
| 27 | +import reactor.core.CoreSubscriber; |
| 28 | + |
| 29 | +@AutoService(InstrumenterModule.class) |
| 30 | +public class CorePublisherInstrumentation extends InstrumenterModule.Tracing |
| 31 | + implements Instrumenter.ForTypeHierarchy, Instrumenter.HasMethodAdvice { |
| 32 | + public CorePublisherInstrumentation() { |
| 33 | + super("reactor-core"); |
| 34 | + } |
| 35 | + |
| 36 | + @Override |
| 37 | + public String hierarchyMarkerType() { |
| 38 | + return "reactor.core.CoreSubscriber"; |
| 39 | + } |
| 40 | + |
| 41 | + @Override |
| 42 | + public ElementMatcher<TypeDescription> hierarchyMatcher() { |
| 43 | + return implementsInterface(named("reactor.core.CorePublisher")) // from 3.1.7 |
| 44 | + .or( |
| 45 | + hasSuperType( |
| 46 | + namedOneOf( |
| 47 | + "reactor.core.publisher.Mono", "reactor.core.publisher.Flux"))); // < 3.1.7 |
| 48 | + } |
| 49 | + |
| 50 | + @Override |
| 51 | + public Map<String, String> contextStore() { |
| 52 | + final Map<String, String> ret = new HashMap<>(); |
| 53 | + ret.put("org.reactivestreams.Subscriber", AgentSpan.class.getName()); |
| 54 | + ret.put("org.reactivestreams.Publisher", AgentSpan.class.getName()); |
| 55 | + return ret; |
| 56 | + } |
| 57 | + |
| 58 | + @Override |
| 59 | + public String[] helperClassNames() { |
| 60 | + return new String[] { |
| 61 | + packageName + ".ContextSpanHelper", |
| 62 | + }; |
| 63 | + } |
| 64 | + |
| 65 | + @Override |
| 66 | + public void methodAdvice(MethodTransformer transformer) { |
| 67 | + transformer.applyAdvice( |
| 68 | + named("subscribe") |
| 69 | + .and(not(isStatic())) |
| 70 | + .and(takesArguments(1)) |
| 71 | + .and(takesArgument(0, named("reactor.core.CoreSubscriber"))), |
| 72 | + getClass().getName() + "$PropagateContextSpanOnSubscribe"); |
| 73 | + } |
| 74 | + |
| 75 | + public static class PropagateContextSpanOnSubscribe { |
| 76 | + @Advice.OnMethodEnter(suppress = Throwable.class) |
| 77 | + public static AgentScope before( |
| 78 | + @Advice.This Publisher<?> self, @Advice.Argument(0) final CoreSubscriber<?> subscriber) { |
| 79 | + final AgentSpan span = extractSpanFromSubscriberContext(subscriber); |
| 80 | + |
| 81 | + if (span != null) { |
| 82 | + // we force storing the span state linked to publisher and subscriber to the one explicitly |
| 83 | + // present in the context so that, if PublisherInstrumentation is kicking in after this |
| 84 | + // advice, it won't override that active span |
| 85 | + InstrumentationContext.get(Publisher.class, AgentSpan.class).put(self, span); |
| 86 | + InstrumentationContext.get(Subscriber.class, AgentSpan.class).put(subscriber, span); |
| 87 | + return activateSpan(span); |
| 88 | + } |
| 89 | + return null; |
| 90 | + } |
| 91 | + |
| 92 | + @Advice.OnMethodExit(suppress = Throwable.class, onThrowable = Throwable.class) |
| 93 | + public static void after(@Advice.Enter final AgentScope scope) { |
| 94 | + if (scope != null) { |
| 95 | + scope.close(); |
| 96 | + } |
| 97 | + } |
| 98 | + } |
| 99 | +} |
0 commit comments