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-class-loader/javaagent-integration-tests/src/test/groovy/ResourceInjectionTest.groovy
Copy file name to clipboardexpand all lines: instrumentation/internal/internal-class-loader/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/internal/classloader/BootDelegationInstrumentation.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ public static class Holder {
76
76
77
77
/**
78
78
* We have to make sure that {@link BootstrapPackagePrefixesHolder} is loaded from bootstrap
79
-
* classloader. After that we can use in {@link LoadClassAdvice}.
79
+
* class loader. After that we can use in {@link LoadClassAdvice}.
Copy file name to clipboardexpand all lines: instrumentation/reactor/reactor-3.1/javaagent/src/testInitialization/java/io/opentelemetry/javaagent/instrumentation/reactor/InitializationTest.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
importreactor.core.Scannable;
14
14
importreactor.core.publisher.Mono;
15
15
16
-
// Isolated test to use clean classloader because reactor instrumentation is applied on static
16
+
// Isolated test to use clean class loader because reactor instrumentation is applied on static
Copy file name to clipboardexpand all lines: instrumentation/spring/spring-boot-actuator-autoconfigure-2.0/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/spring/actuator/SpringBootActuatorInstrumentationModule.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@ public SpringBootActuatorInstrumentationModule() {
Copy file name to clipboardexpand all lines: instrumentation/undertow-1.4/bootstrap/src/main/java/io/opentelemetry/javaagent/bootstrap/undertow/KeyHolder.java
+7-7
Original file line number
Diff line number
Diff line change
@@ -20,14 +20,14 @@
20
20
* them as different keys then.
21
21
*
22
22
* <p>That is why this class exists and resides in a separate package. This package is treated in a
23
-
* special way and is always loaded by bootstrap classloader. This makes sure that this class is
24
-
* available to all tracers from every classloader.
23
+
* special way and is always loaded by bootstrap class loader. This makes sure that this class is
24
+
* available to all tracers from every class loader.
25
25
*
26
-
* <p>But at the same time, being loaded by bootstrap classloader, this class itself cannot initiate
27
-
* the loading of {@code io.undertow.util.AttachmentKey} class. Class has to be loaded by <i>any</i>
28
-
* classloader that has it, e.g. by the classloader of a Tracer that uses this key holder. After
29
-
* that, <i>all</i> Tracers, loaded by all classloaders, will be able to use exactly the same sole
30
-
* instance of the key.
26
+
* <p>But at the same time, being loaded by bootstrap class loader, this class itself cannot
27
+
* initiate the loading of {@code io.undertow.util.AttachmentKey} class. Class has to be loaded by
28
+
* <i>any</i> class loader that has it, e.g. by the class loader of a Tracer that uses this key
29
+
* holder. After that, <i>all</i> Tracers, loaded by all class loaders, will be able to use exactly
Copy file name to clipboardexpand all lines: javaagent-bootstrap/src/main/java/io/opentelemetry/javaagent/bootstrap/BootstrapPackagePrefixesHolder.java
+4-4
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@
10
10
11
11
/**
12
12
* {@link BootstrapPackagePrefixesHolder} is an utility class that holds package prefixes. The
13
-
* classes from these packages are pushed to the bootstrap classloader.
13
+
* classes from these packages are pushed to the bootstrap class loader.
14
14
*
15
-
* <p>The prefixes are loaded by {@code AgentInstaller} and consumed by classloader instrumentation.
16
-
* The instrumentation does not have access to the installer, therefore this utility class is used
17
-
* to share package prefixes.
15
+
* <p>The prefixes are loaded by {@code AgentInstaller} and consumed by class loader
16
+
* instrumentation. The instrumentation does not have access to the installer, therefore this
17
+
* utility class is used to share package prefixes.
0 commit comments