Skip to content

Commit 627f470

Browse files
committed
Making indy ready
1 parent 3cdde20 commit 627f470

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

instrumentation/tapestry-5.4/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/tapestry/TapestryInstrumentationModule.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@
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;
1415
import java.util.List;
1516
import net.bytebuddy.matcher.ElementMatcher;
1617

1718
@AutoService(InstrumentationModule.class)
18-
public class TapestryInstrumentationModule extends InstrumentationModule {
19+
public class TapestryInstrumentationModule extends InstrumentationModule
20+
implements ExperimentalInstrumentationModule {
1921

2022
public TapestryInstrumentationModule() {
2123
super("tapestry", "tapestry-5.4");
@@ -33,4 +35,9 @@ public List<TypeInstrumentation> typeInstrumentations() {
3335
new InitializeActivePageNameInstrumentation(),
3436
new ComponentPageElementImplInstrumentation());
3537
}
38+
39+
@Override
40+
public boolean isIndyReady() {
41+
return true;
42+
}
3643
}

0 commit comments

Comments
 (0)