OpenTelemetry Setup
Setting up Sentry with OpenTelemetry.
There are multiple ways to configure our OpenTelemetry integration. You may chose between using our Java Agent or using one of our agentless dependencies.
This is our recommended way of setting up Sentry with OpenTelemetry as it offers the broadest support for frameworks and libraries.
The sentry-opentelemetry-agent
makes use of the java
command's -javaagent
argument. This Java Agent will run some code before starting your application, configuring OpenTelemetry and Sentry and also dynamically injects bytecode into your application.
The injected code allows OpenTelemetry and by extension also Sentry to:
- Instrument your application by creating spans around things like HTTP requests, database queries, and many more.
- Propagate OpenTelemetry
Context
and SentryScopes
through libraries - Extract tracing information from incoming requests and consumed messages
- Inject tracing information into outgoing requests and produced messages
The sentry-opentelemetry-agent
is packaged as a JAR file and is separate from your applications JAR / WAR file. This means you will have to manage the version on your server and upgrade it whenever you upgrade the Sentry SDK dependency in your application should you have it.
✨ Note
Sentry Java SDK dependencies as well as sentry-opentelemetry-agent
version must always be aligned. Mixing them is very likely to cause crashes and as of version 8.6.0
the Java SDK will throw an exception on init
in this case to help catch the issue during development.
Since sentry-opentelemetry-agent
is based on opentelemetry-agent
, you may also find OpenTelmetry docs helpful.
For a guide on how to set up sentry-opentelemetry-agent
, please have a look at the detailed Agent docs.
We also offer a way of using Sentry with OpenTelemetry that does not require a Java Agent but instead makes use of a dependency that can be packaged with your application.
The sentry-opentelemetry-agentless
dependency combines all modules and dependencies needed to use Sentry with OpenTelemetry.
For a guide on how to set up agentless, please have a look at the detailed Agentless docs.
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").