Rodolfo Carvalho
Rodolfo Carvalho
It is common practice in Go to name package path components in singular, so - `exporter/metric/...` - `propagator` - `detector` - `instrumentation` (currently already in singular form) Right now of...
Prior to [pkg.go.dev](https://pkg.go.dev), [godoc.org](https://godoc.org) has had a JSON API that can be used to, among other things, discover importers of a given package. Example: https://api.godoc.org/importers/golang.org/x/net/html Given that [pkg.go.dev](https://pkg.go.dev) does a...
Currently, the `@sentry/browser` SDK has no mechanism to automatically clone the `Hub` (and, consequently, `Scope`), unlike `@sentry/node` that automatically clones a new hub per Node Domain -- and we use...
## Introduction Back in #1464, it was reported that `KeepAlive: true` interacts with `fetch` in a way that limits POST request body sizes. This behavior is specified in https://fetch.spec.whatwg.org/#http-network-or-cache-fetch >...
The topic has popped up in a few occasions. Some don't like to see a long list of indirect dependencies in their `go.mod` files. https://github.com/getsentry/sentry-go/issues/75#issuecomment-553648455 https://github.com/getsentry/sentry-go/issues/75#issuecomment-557699949 https://github.com/getsentry/sentry-go/issues/79
Starting with Go 1.18, the `go` command embeds information about the build which can be retrieved using `runtime/debug.ReadBuildInfo` for the current binary. We can use that information to provide a...
We need to add to the SDK a new config bool such that anything that we know will identify a user is not sent on events by default. The entire...
Running tests several times in a row (`-count=N`) reviews a failure in `TestContextifyFrames `. ``` $ go test PASS ok github.com/getsentry/sentry-go 0.422s ``` ``` $ go test -count=5000 -failfast ---...
When GO111MODULE=OFF, prevent Travis from trying to build external integrations fetched with "go get". --- While we want to make sure the core of sentry-go can be used with or...
We could consider adding rate limiting on the default transport to shape the outgoing network traffic from the SDK. In the end of the day rate limiting in a server-side...