Roman Zavarnitsyn
Roman Zavarnitsyn
https://github.com/getsentry/rfcs/pull/129
### Description From play console: ``` Exception java.lang.OutOfMemoryError: at java.lang.Thread.nativeCreate at java.lang.Thread.start (Thread.java:883) at java.util.Timer. (Timer.java:183) at java.util.Timer. (Timer.java:153) at io.sentry.SentryTracer. (SentryTracer.java:105) at io.sentry.Hub.createTransaction (Hub.java:727) at io.sentry.Hub.startTransaction (Hub.java:677) at io.sentry.Sentry.startTransaction...
### Description https://sentry-sdks.sentry.io/issues/4567235831/?project=5428559&query=is%3Aunresolved&referrer=issue-stream&statsPeriod=7d&stream_index=0  After TwP we set the trace origin to `manual` by default, but probably we shouldn't just set it for errors if there's no active transactions, otherwise...
### Description From the top of my head we could automatically detect the following potential problem that we point out in the PRs all the time: * Using `withScope` instead...
### Description Follow-up from #2893 We're going to matching the [otel db conventions](https://opentelemetry.io/docs/specs/otel/trace/semantic_conventions/database/). Either one of `server.address` or `server.socket.address` is required. If `server.address` is set, then `server.port` should be set....
## :scroll: Description ## :bulb: Motivation and Context Closes #132 ## :green_heart: How did you test it? ## :pencil: Checklist - [ ] I reviewed the submitted code - [...
### Description Since compose-desktop receives more and more traction, and people usually like to minify their apps (to reduce the final `.jar` size, and also to optimize their bytecode), we...
### Description At the moment we are relying on older AGP APIs from the internal package, e.g. here to retrieve an `assembleTaskProvider`: https://github.com/getsentry/sentry-android-gradle-plugin/blob/6865616328829c33fbde83295bda915e7a3849c9/plugin-build/src/agp74/kotlin/io/sentry/android/gradle/AGP74Compat.kt#L37-L40 We should rather use newer APIs to...
### Description Since we have introduced pure jvm `sentry-okhttp` module in 7.0.0, we need to sunset its predecessor eventually: * auto-install `sentry-okhttp` instead of `sentry-android-okhttp` when the sdk version is...
### Description We could expose more granular options for setting up auto-installation, specifically, we could provide a list of integrations to install, for example: ``` sentry { autoInstallation { enabled...