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/internal/internal-lambda-java9/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/internal/lambda/Java9LambdaTransformer.java
Copy file name to clipboardexpand all lines: instrumentation/internal/internal-lambda/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/internal/lambda/InnerClassLambdaMetafactoryInstrumentation.java
Copy file name to clipboardexpand all lines: instrumentation/internal/internal-lambda/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/internal/lambda/LambdaInstrumentationModule.java
Copy file name to clipboardexpand all lines: instrumentation/internal/internal-lambda/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/internal/lambda/LambdaTransformer.java
Copy file name to clipboardexpand all lines: instrumentation/kotlinx-coroutines/kotlinx-coroutines-1.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/kotlinxcoroutines/instrumentationannotations/AnnotationInstrumentationHelper.java
+14-11
Original file line number
Diff line number
Diff line change
@@ -15,12 +15,20 @@
15
15
importkotlin.coroutines.Continuation;
16
16
importkotlin.coroutines.intrinsics.IntrinsicsKt;
17
17
18
+
/**
19
+
* Instrumentation helper that is called through bytecode instrumentation. When using invokedynamic
20
+
* instrumentation this class is called through an injected proxy, and thus it should not pull any
21
+
* other class references than the ones that are already present in the target classloader or the
22
+
* bootstrap classloader. This is why the {@link MethodRequest} class is here passed as an {@link
23
+
* Object} as it allows to avoid having to inject extra classes in the target classloader
24
+
*/
25
+
@SuppressWarnings("unused") // methods calls injected through bytecode instrumentation
Copy file name to clipboardexpand all lines: instrumentation/kotlinx-coroutines/kotlinx-coroutines-1.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/kotlinxcoroutines/instrumentationannotations/AnnotationInstrumentationModule.java
0 commit comments