Skip to content

Commit 91305b9

Browse files
SylvainJugeclaude
andcommitted
remove unused ExperimentalInstrumentationModule from pekko-http modules
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 6b4da25 commit 91305b9

3 files changed

Lines changed: 3 additions & 9 deletions

File tree

instrumentation/pekko/pekko-http-1.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/pekkohttp/v1_0/server/PekkoHttpServerInstrumentationModule.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@
1111
import com.google.auto.service.AutoService;
1212
import io.opentelemetry.javaagent.extension.instrumentation.InstrumentationModule;
1313
import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
14-
import io.opentelemetry.javaagent.extension.instrumentation.internal.ExperimentalInstrumentationModule;
1514
import java.util.List;
1615
import net.bytebuddy.matcher.ElementMatcher;
1716

1817
@AutoService(InstrumentationModule.class)
19-
public class PekkoHttpServerInstrumentationModule extends InstrumentationModule
20-
implements ExperimentalInstrumentationModule {
18+
public class PekkoHttpServerInstrumentationModule extends InstrumentationModule {
2119
public PekkoHttpServerInstrumentationModule() {
2220
super("pekko-http", "pekko-http-1.0", "pekko-http-server");
2321
}

instrumentation/pekko/pekko-http-1.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/pekkohttp/v1_0/server/route/PekkoHttpServerRouteInstrumentationModule.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,14 @@
1010
import com.google.auto.service.AutoService;
1111
import io.opentelemetry.javaagent.extension.instrumentation.InstrumentationModule;
1212
import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
13-
import io.opentelemetry.javaagent.extension.instrumentation.internal.ExperimentalInstrumentationModule;
1413
import java.util.List;
1514

1615
/**
1716
* This instrumentation applies to classes in pekko-http.jar while
1817
* PekkoHttpServerInstrumentationModule applies to classes in pekko-http-core.jar
1918
*/
2019
@AutoService(InstrumentationModule.class)
21-
public class PekkoHttpServerRouteInstrumentationModule extends InstrumentationModule
22-
implements ExperimentalInstrumentationModule {
20+
public class PekkoHttpServerRouteInstrumentationModule extends InstrumentationModule {
2321
public PekkoHttpServerRouteInstrumentationModule() {
2422
super("pekko-http", "pekko-http-1.0", "pekko-http-server", "pekko-http-server-route");
2523
}

instrumentation/pekko/pekko-http-1.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/pekkohttp/v1_0/server/tapir/TapirPekkoHttpServerRouteInstrumentationModule.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@
1010
import com.google.auto.service.AutoService;
1111
import io.opentelemetry.javaagent.extension.instrumentation.InstrumentationModule;
1212
import io.opentelemetry.javaagent.extension.instrumentation.TypeInstrumentation;
13-
import io.opentelemetry.javaagent.extension.instrumentation.internal.ExperimentalInstrumentationModule;
1413
import java.util.List;
1514

1615
@AutoService(InstrumentationModule.class)
17-
public class TapirPekkoHttpServerRouteInstrumentationModule extends InstrumentationModule
18-
implements ExperimentalInstrumentationModule {
16+
public class TapirPekkoHttpServerRouteInstrumentationModule extends InstrumentationModule {
1917
public TapirPekkoHttpServerRouteInstrumentationModule() {
2018
super(
2119
"pekko-http",

0 commit comments

Comments
 (0)