Arpad Borsos
Arpad Borsos
With Rust, it is not really possible to hook into this automatically, and thus has to be done manually, like so: ```rust if let Some(span) = sentry::configure_scope(|scope| scope.get_span()) { for...
It might not be necessary, but I doubt it hurts to keep it? I would have to take a closer look at this in any case.
I believe this is because we do not (yet) support DWARF in PE. If you want to use DWARF as debug format, it has to be in an ELF or...
Another problem here is also that the file is missing a `DebugId`.
It might have something to do with the mingw tools. The issue you linked above is using `cv2pdb` to create a pdb file, which appears to be usable. Another member...
The team has had a look at this and we were able to reproduce this, though did not find a proper way to make this work. In general we appreciate...
Either convert the whole debuginfo to pdb, or just make sure that the DWARF is in a container format that is appropriate for it, like ELF.
I think it should be fairly straight forward to copy the existing code for `SentryHttpLayer` over and adapt it to work with tonic. Apart from starting a transaction, the HttpLayer...
``` impl Service for SentryGrpcService ``` I’m not quite sure what kind of request/body type you need for grpc, but I doubt that it is `hyper::Request`?
Yes, this is pretty much intentional. The `event_mapper` takes precedence over the filter, as you can also filter things in it, you just return an `EventMapping::Ignore`. https://github.com/getsentry/sentry-rust/blob/3e7eec2c27467d528ed3316fe05dc3e5d52f176c/sentry-tracing/src/layer.rs#L136-L138 Though I admit...