I am trying to make Sentry work with a maven/Java project. It seems that I can initialize a connection to the Sentry server, however only errors that I specifically catch with Sentry.capture(e) gets loaded to the server. How can I make it so that EVERY uncaught error will be loaded to the server?
I am using the environment variables, and I'm using intelliJ. In "Run" -> "Edit Configurations..." -> "Environment Variables"
And I inserted SENTRY_DNS="myDNS" SENTRY_SAMPLE_RATE="0.75" as shown in the docs... Do I lack something?