This commit is contained in:
Nikita Salnikov-Tarnovski 2020-09-10 21:28:28 +03:00
parent fc8d38185b
commit fe6eecf830
1 changed files with 3 additions and 4 deletions

View File

@ -37,13 +37,12 @@ public final class ReactorHooksInstrumentation extends Instrumenter.Default {
@Override
public String[] helperClassNames() {
return new String[] {
"io.opentelemetry.instrumentation.reactor.TracingOperator$Lifter",
"io.opentelemetry.instrumentation.reactor.TracingOperator",
"io.opentelemetry.instrumentation.reactor.TracingSubscriber"
"io.opentelemetry.instrumentation.reactor.TracingOperator$Lifter",
"io.opentelemetry.instrumentation.reactor.TracingOperator",
"io.opentelemetry.instrumentation.reactor.TracingSubscriber"
};
}
@Override
public ElementMatcher<TypeDescription> typeMatcher() {
return named("reactor.core.publisher.Hooks");