Manoel Aranda Neto
Manoel Aranda Neto
@vaind we can probably make a flutter symbol server https://docs.sentry.io/platforms/unreal/data-management/debug-files/symbol-servers/ Another Option is that the dart plugin figure out the correct flutter version/download link and download/upload them.
@vaind totally agree but the issue is ~2y old already, not sure if this will ever be addressed. We can be more proactive and find a solution that won't demand...
I've [filed](https://github.com/getsentry/team-ingest/issues/452) a feature request for a new built-in Flutter symbol server, let's see if this is possible, and is less work/less to maintain than the other options.
@vaind I will be OOO until the 7th but feel free to ping @Swatinem on Discord @kahest or @krystofwoldrich can be the bridge as well if needed.
A workaround, for now, is to really n to call `Sentry.captureX` but rather let exceptions be thrown and bubble down to the global error or via `addSentryErrorListener`. If you wanna...
I don't think it's specifically to background isolates, but rather any new Isolate, for example, using `Isolate.spawn`. I'd like to find a way where `SentryFlutter.init` isn't necessary, if possible. :(
Thanks for the heads up.
We could split up this issue in different parts if that makes sense, since they are 3 different features that touch the same interceptor.
Our server-side SDKs don't offer `gPRC` support OOTB, so for distributed tracing, people would need to leverage our SDKs with custom instrumentation, at least on the server side. Edit: [Only...
For even richer APM support, it'd make sense to offer support for [HTTP2](https://pub.dev/packages/http2) as well. [gRPC uses HTTP2 by default](https://learn.microsoft.com/en-us/dotnet/architecture/cloud-native/grpc#grpc-benefits). So distributed tracing should work as any other HTTP integration,...