Actionable insights to solve Java errors.
Grab the Sentry Java SDK:
<dependency> <groupId>io.sentry</groupId> <artifactId>sentry</artifactId> <version>5.5.2</version> </dependency>
Configure your DSN:
import io.sentry.Sentry; public class Application { public static void main(String[] args) { Sentry.init("https://<key>@sentry.io/<project>"); try { runSomething(); } catch (Exception e) { Sentry.captureException(e); } } }
That’s it. Be sure to check out our documentation to ensure you have the latest instructions.
See all platformsSee Java stack trace details like filename and line number so you never have to guess. Filter and group Java exceptions intuitively to eliminate noise. Monitor errors at scale without impacting throughput in production.
Quickly identify Java performance issues before they become downtime. View the entire end-to-end distributed trace to see the exact, poor-performing API call and surface any related errors.
Expose the important events that led to each Java exception: debug logs, network requests, database queries, past errors.
With Sentry's exceptional exception handling in Java, you can triage quickly based on specific parameters like HTTP request, workflow stage, and hostname for each issue. Set custom tags to recreate the error environment relevant to your app, business concerns, and users.
Just look at all the high-quality security features all accounts get, regardless of plan.
When Spring Boot is configured to generate Git information every event triggered by Sentry will have a release field set to the current Git commit ID that will enable Monitor Release Health Sentry feature. More details here.
You can get started for free. Pricing depends on the number of monthly events, transactions, and attachments that you send Sentry. For more details, visit our pricing page.