develop
develop copied to clipboard
This and https://github.com/getsentry/develop/issues/425 are a continuation of https://github.com/getsentry/develop/issues/410, to make sure points I brought up there don't get lost now that it's closed. With the addition of user data and...
[RFC 4648](https://rfc-editor.org/rfc/rfc4648.html) defines a standard base64 encoding, and an alternate encoding that is typically used in URLs and file names. These are the alphabets in each: ```go const encodeStd =...
The new [Trace Contexts](https://develop.sentry.dev/sdk/trace-context/#trace-context) page documents a `trace_id` that is a UUID, while in the Performance product we do not use UUIDs (neither for `trace_id` nor `span_id`). Reference: https://develop.sentry.dev/sdk/event-payloads/transaction/#anatomy >...
Was running through the Azure devops integration page. The documentation links the Azure Devops site to create a new application while also providing instruction on what to set. In situations...
https://develop.sentry.dev/environment/#docker-mac-specific Search for like, `init-docker` or `devserver --workers` and you won't get any hits on that page, when in fact they're there but in code blocks. context: https://github.com/getsentry/sentry/pull/26296/files#r643399068
https://develop.sentry.dev/sdk/event-payloads/span/ This is the source code:  This is what is rendered:  So there are things like `event_id` that were never included in the source and appears in the...
_Maybe as part of [SDK Features](https://develop.sentry.dev/sdk/features/)._ Transports should - Use TCP keep-alive - Use connection pooling - Limit number of concurrent calls to Relay (typically and historically 1 request-at-a-time when...
If the user has set the `TracesSampleRate` to `0` to disable it and hasn't set `TracesSampler` to anything, then their web app may still be starting and sending transactions if...
Item `Handling Errors` goes to https://develop.sentry.dev/sdk/overview/#request-compression Item `Concurrency (Scope and Hubs)`: goes to https://develop.sentry.dev/sdk/overview/#transfer-encoding I've tried to figure this out and fix by myself, but it turns out that when...