raven-go icon indicating copy to clipboard operation
raven-go copied to clipboard

Sentry client in Go

Results 68 raven-go issues
Sort by recently updated
recently updated
newest added

A method to add breadcrumbs before capturing the error.

In a use-case I had locally, I wanted to purely capture top level crashes (and still raise them). There's nothing built-in as far as I could see to do this,...

PingCAP's errors package is a fork of pkg/errors that makes a few nice improvements, like being able to call `errors.AddStack(err)` several times at different levels of the call stack without...

I am using [juju errors](https://github.com/juju/errors) in my project and raven-go does not like them. This example uses standard Go errors: ``` package main import ( "errors" "fmt" "os" "github.com/getsentry/raven-go" //...

## Add methods that return error when capturing The client's capture method returns an error channel that according to the docs is intended to be used for checking if a...

Closes https://github.com/getsentry/raven-go/pull/227 Closes https://github.com/getsentry/raven-go/pull/137 Fixes https://github.com/getsentry/raven-go/pull/228

Hey, maybe I'm doing something wrong or I'm missing some config or whatnot, but I'm not able to get source code context to appear in the Sentrt when running the...

It is modify PR [#222](https://github.com/getsentry/raven-go/pull/222) with custom HTTPTransport client parameters.

raven-go did not support providing specified fingerprint which will be included in the packet that will be sent to the Sentry server. 6da7a07 introduces some new capturing functions that goes...

Right now, if you set a context tag (https://docs.sentry.io/enriching-error-data/context/?platform=javascript#tagging-events) but the value is empty, you get an error in the sentry UI ![Screen Shot 2019-04-08 at 5 22 15 PM](https://user-images.githubusercontent.com/6885889/55765255-be9fa700-5a23-11e9-8022-8f37682a6507.png)...