If you can't update the JVM arguments to attach the OpenTelemetry Java agent (-javaagent:path/to/opentelemetry-javaagent.jar), this project allows you to do attachment programmatically.
Replace OPENTELEMETRY_CONTRIB_VERSION
with the latest release version.
For Maven, add to your pom.xml
the following dependency:
<dependency>
<groupId>io.opentelemetry.contrib</groupId>
<artifactId>opentelemetry-runtime-attach</artifactId>
<version>OPENTELEMETRY_CONTRIB_VERSION</version>
</dependency>
For Gradle, add to your dependencies:
implementation("io.opentelemetry.contrib:opentelemetry-runtime-attach:OPENTELEMETRY_CONTRIB_VERSION")
This dependency embeds the OpenTelemetry agent JAR.
The io.opentelemetry.contrib.attach.RuntimeAttach
class has an attachJavaagentToCurrentJVM
method allowing to trigger the attachment of the OTel agent for Java.
You have to call this method at the beginning of your application's main
method.
We give below an example for Spring Boot applications:
@SpringBootApplication
public class SpringBootApp {
public static void main(String[] args) {
RuntimeAttach.attachJavaagentToCurrentJvm();
SpringApplication.run(SpringBootApp.class, args);
}
}
The attachment will not be initiated in the following cases:
- The
otel.javaagent.enabled
property is set tofalse
- The
OTEL_JAVAAGENT_ENABLED
environment variable is set tofalse
- The attachment is not requested from the main thread
- The attachment is not requested from the
public static void main(String[] args)
method - The agent is already attached
- The application is running on a JRE (a JDK is necessary, see this issue)
- The temporary directory should be writable
- Jean Bisutti, Microsoft
Learn more about component owners in component_owners.yml.