Skip to content

Commit

Permalink
Undertow: run response customizer on all ServerConnection implementat…
Browse files Browse the repository at this point in the history
…ions (#11539)
  • Loading branch information
laurit committed Jun 8, 2024
1 parent ab4432c commit cc1c042
Showing 1 changed file with 24 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,33 @@

package io.opentelemetry.javaagent.instrumentation.undertow;

import static io.opentelemetry.javaagent.extension.matcher.AgentElementMatchers.extendsClass;
import static io.opentelemetry.javaagent.extension.matcher.AgentElementMatchers.hasClassesNamed;
import static io.opentelemetry.javaagent.instrumentation.undertow.UndertowSingletons.helper;
import static net.bytebuddy.matcher.ElementMatchers.named;
import static net.bytebuddy.matcher.ElementMatchers.namedOneOf;
import static net.bytebuddy.matcher.ElementMatchers.takesArgument;

import io.opentelemetry.context.Context;
import io.opentelemetry.javaagent.bootstrap.CallDepth;
import io.opentelemetry.javaagent.bootstrap.http.HttpServerResponseCustomizerHolder;
import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
import io.opentelemetry.javaagent.extension.instrumentation.TypeTransformer;
import io.undertow.server.HttpServerExchange;
import io.undertow.server.ServerConnection;
import net.bytebuddy.asm.Advice;
import net.bytebuddy.description.type.TypeDescription;
import net.bytebuddy.matcher.ElementMatcher;

public class HttpServerConnectionInstrumentation implements TypeInstrumentation {

@Override
public ElementMatcher<ClassLoader> classLoaderOptimization() {
return hasClassesNamed("io.undertow.server.ServerConnection");
}

@Override
public ElementMatcher<TypeDescription> typeMatcher() {
return namedOneOf(
"io.undertow.server.protocol.http.HttpServerConnection",
"io.undertow.server.protocol.http2.Http2ServerConnection");
return extendsClass(named("io.undertow.server.ServerConnection"));
}

@Override
Expand All @@ -39,10 +46,22 @@ public void transform(TypeTransformer transformer) {
public static class ResponseAdvice {

@Advice.OnMethodEnter(suppress = Throwable.class)
public static void onEnter(@Advice.Argument(0) HttpServerExchange exchange) {
public static void onEnter(
@Advice.Argument(0) HttpServerExchange exchange,
@Advice.Local("otelCallDepth") CallDepth callDepth) {
callDepth = CallDepth.forClass(ServerConnection.class);
if (callDepth.getAndIncrement() > 0) {
return;
}

Context context = helper().getServerContext(exchange);
HttpServerResponseCustomizerHolder.getCustomizer()
.customize(context, exchange, UndertowHttpResponseMutator.INSTANCE);
}

@Advice.OnMethodExit(onThrowable = Throwable.class, suppress = Throwable.class)
public static void onExit(@Advice.Local("otelCallDepth") CallDepth callDepth) {
callDepth.decrementAndGet();
}
}
}

0 comments on commit cc1c042

Please sign in to comment.