All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.opentelemetry.javaagent.instrumentation.undertow.UndertowInstrumentationModule Maven / Gradle / Ivy

There is a newer version: 2.8.0-alpha
Show newest version
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package io.opentelemetry.javaagent.instrumentation.undertow;

import static io.opentelemetry.javaagent.extension.matcher.AgentElementMatchers.hasClassesNamed;
import static java.util.Arrays.asList;

import com.google.auto.service.AutoService;
import io.opentelemetry.javaagent.extension.instrumentation.InstrumentationModule;
import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
import java.util.List;
import net.bytebuddy.matcher.ElementMatcher;

@AutoService(InstrumentationModule.class)
public class UndertowInstrumentationModule extends InstrumentationModule {

  public UndertowInstrumentationModule() {
    super("undertow", "undertow-1.4");
  }

  @Override
  public ElementMatcher.Junction classLoaderMatcher() {
    // class added in 1.4.0
    return hasClassesNamed("io.undertow.Undertow$ListenerInfo");
  }

  @Override
  public List typeInstrumentations() {
    return asList(
        new HandlerInstrumentation(),
        new HttpServerExchangeInstrumentation(),
        new HttpTransferEncodingInstrumentation());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy