sentry-rust
sentry-rust copied to clipboard
Official Sentry SDK for Rust
Adding pthread is currently causing problems collecting stack traces on Linux. This commit remove that blocklist to allow us debug this problem further. Please, keep this PR on hold. I'm...
Currently, there are multiple places where we diverge with our own spec, which makes our SDK non-compliant. This is somewhat problematic, as the SDK is used internally by tools like...
relevant docs: https://develop.sentry.dev/sdk/event-payloads/types/#logentry ### Environment ``` sentry-cli --version sentry-cli 2.5.0 ``` bug example: ```json { "logentry" : { "message" : "some unformatted message {var}", "params" : {"var" : "hey there"}...
relevant docs: https://develop.sentry.dev/sdk/event-payloads/types/#example i ran the examples from the docs through sentry-cli ```json { "timestamp": "2011-05-02T17:41:36" } ``` `error: the 'offset hour' component could not be parsed at line 1...
relevant docs: https://develop.sentry.dev/sdk/event-payloads/types/#request > query_string (optional): null | (string | (Array | { [key: string]: null | string })) > The query string component of the URL. > Can be...
reference docs: https://develop.sentry.dev/sdk/event-payloads/request/ > data Optional. Submitted data in a format that makes the most sense. SDKs should discard large bodies by default. Can be given as string or **_structural...
reference docs: https://develop.sentry.dev/sdk/event-payloads/contexts/ > The contexts type can be used to define arbitrary contextual data on the event. It accepts an object of key/value pairs. The key is the “alias”...
I would like to create an offline transport that queues envelopes on disk if no connection is available. The only way to currently do this is to copy one of...
I've been [messing around](https://github.com/timfish/sentry-rust-minidump) with the `minidumper` and `crash-handler` crates and now I seem to have minidumps being captured in pure Rust and sent via Sentry Rust. Minidumps are sent...
I've been using the sentry types in a production app for a while now and I've noticed some internal patterns that might be useful to the broader sentry ecosystem. The...