You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: instrumentation/spring/spring-webflux/spring-webflux-5.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/spring/webflux/v5_0/server/HandlerAdapterInstrumentation.java
+32-4Lines changed: 32 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,10 @@ public ElementMatcher<TypeDescription> typeMatcher() {
47
47
48
48
@Override
49
49
publicvoidtransform(TypeTransformertransformer) {
50
+
// Get the class name being transformed - this requires accessing transformer internals
51
+
// For now, just log that we're transforming
52
+
System.out.println("=== HandlerAdapterInstrumentation.transform() called ===");
53
+
System.out.println(" Applying advice to 'handle' method");
50
54
transformer.applyAdviceToMethod(
51
55
isMethod()
52
56
.and(isPublic())
@@ -55,6 +59,7 @@ public void transform(TypeTransformer transformer) {
0 commit comments