Alexander Dinauer
Alexander Dinauer
## :scroll: Description Add `SentryAttribute.flattened` to allow flattening objects into separate key/value pairs of simple types. e.g.: `SentryAttribute.flattened("p", new Point(10, 20))` will add multiple attributes under the hood: `p.x=10` and...
### Problem Statement For the [logs feature](https://docs.sentry.io/platforms/java/logs/) we want to have an integration for JUL. ### Solution Brainstorm _No response_
### Problem Statement For the [logs feature](https://docs.sentry.io/platforms/java/logs/) we want to have an integration for log4j2. ### Solution Brainstorm -
### Integration sentry ### Java Version - ### Version 8 ### Steps to Reproduce Use our Spring Boot 3 OpenTelemetry sample with our `sentry-opentelemetry-agent` and cause a transaction, e.g. via...
### Description https://docs.sentry.io/platforms/android/configuration/options/ seems to have copied a bunch of sentences mentioning environment variables which don't work for Android. We should remove them from docs.
### Environment Ran a release of Maven and Gradle plugin. ### Steps to Reproduce 1. Release Gradle plugin 2. Release Maven plugin right after Gradle plugin release succeeded ### Expected...
### Integration sentry ### Java Version any ### Version 8.27.1 ### Steps to Reproduce https://github.com/getsentry/sentry-java/blob/3699cd5331a4c334c1e8a4bd85aa8e399f5c4231/sentry-samples/sentry-samples-spring-boot-4/src/main/java/io/sentry/samples/spring/boot4/CustomJob.java#L14 creates a transaction. https://github.com/getsentry/sentry-java/blob/4c4fed9ef005ffc3acaf460ed345c1e700fdeefe/sentry-spring-7/src/main/java/io/sentry/spring7/checkin/SentryCheckInAdvice.java#L91 starts a new trace. Use our Spring Boot 4 sample to...
## :scroll: Description Envelopes are now discarded on a `4xx` or `5xx` response instead of retrying them. - For `4xx` it's most likely an SDK (e.g. incorrect serialization) or envelope...
### Problem Statement This currently logs envelopes. ### Solution Brainstorm Add an overload for `ISerializer` that has an additional `boolean` param, allowing us to mute logging for specific calls.
### Problem Statement Add a hook for Firebase Remote Config that tracks Feature Flag evaluations in Sentry. ### Solution Brainstorm Something like: ```java public class SentryFirebaseRemoteConfigListener implements ConfigUpdateListener { private...