Skip to content

Commit 10bfb20

Browse files
committed
Making pekko modules indy ready
1 parent 6c52b84 commit 10bfb20

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,9 @@ public List<TypeInstrumentation> typeInstrumentations() {
4242
new GraphInterpreterInstrumentation(),
4343
new PekkoHttpServerSourceInstrumentation());
4444
}
45+
46+
@Override
47+
public boolean isIndyReady() {
48+
return true;
49+
}
4550
}

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,9 @@ public List<TypeInstrumentation> typeInstrumentations() {
3636
new PathMatcherStaticInstrumentation(),
3737
new RouteConcatenationInstrumentation());
3838
}
39+
40+
@Override
41+
public boolean isIndyReady() {
42+
return true;
43+
}
3944
}

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,9 @@ public String getModuleGroup() {
3535
public List<TypeInstrumentation> typeInstrumentations() {
3636
return singletonList(new TapirPathInstrumentation());
3737
}
38+
39+
@Override
40+
public boolean isIndyReady() {
41+
return true;
42+
}
3843
}

0 commit comments

Comments
 (0)