Alexander Dinauer

Results 410 comments of Alexander Dinauer

In case you're still waiting for this feature, you could give our [OpenTelemetry Integration](https://docs.sentry.io/platforms/java/guides/spring-boot/performance/instrumentation/opentelemetry/) a try.

Hey everyone, we've just released [8.0.0-alpha.2](https://github.com/getsentry/sentry-java/releases/tag/8.0.0-alpha.2) of the Java SDK, which has an improved version of our OpenTelemetry integration that supports gRPC [amongst many other libraries and frameworks](https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/docs/supported-libraries.md). There's instructions...

> add an example use case here for when to use the agentless version instead of the agent, like when using GraalVM? came up here: https://github.com/getsentry/sentry-docs/pull/13202/files/9b1f13ab1e3954095bc40fac9bee841a458f8658#r2043934280

Assuming this is only relevant for server side (incoming) 404s, not outgoing requests resulting in 404. Edit: Both JS and Laravel have option names that suggest it's only used for...

`Baggage` storing everything as `String` might not be ideal and requires workarounds like https://github.com/getsentry/sentry-java/pull/4279 where we now store certain values directly in its most used type to avoid performance problems....

Not creating spans for certain URLs (e.g. on outgoing HTTP requests) should be possible. We currently have `beforeSendTransaction` as a workaround that allows dropping spans from the transaction. This however...

Thanks for reaching out @dodgex . You can safely ignore this warning. We'll take a look at getting rid of it.

@Andromedids it's quite possible you've hit a buggy version of the Java SDK which the Gradle plugin automatically adds. Glad it's working for you with the latest version. @jebeaudet that...

Looks like this needs to be added (automatically): ``` @Bean OkHttpClient okHttpClient() { return new OkHttpClient.Builder() .addInterceptor(new SentryOkHttpInterceptor()) .eventListener(new SentryOkHttpEventListener()) .build(); } ``` We need to check if there's usually...

Most of the things mentioned should already behave as desired. Mobile team please check for > When the application moves to the background, the BatchProcessor SHOULD send all data in...