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

Automatic panic monitoring for Go and Go web frameworks, like negroni, gin, and revel

Results 16 bugsnag-go issues
Sort by recently updated
recently updated
newest added

Hi, Was wondering if there are any plans to add breadcrumb support. Thanks!

feature request
backlog

I'd like to use BugSnag on our [Fiber](https://github.com/gofiber/fiber) backends. Fiber is built upon [FastHTTP](https://github.com/valyala/fasthttp) which doesn't use the standard net/http library.

feature request
backlog

Can we have a example to setup bugsnag with [go-chi](https://github.com/go-chi/chi)?

## Goal `**` is supported by https://github.com/bugsnag/bugsnag-go/pull/25, but comments are not updated. So I updated the comment.

backlog

### Inline functions were ignored example: ```golang package main import ( "fmt" "github.com/bugsnag/bugsnag-go/v2" "github.com/pkg/errors" ) func A() error { return errors.New("Bugsnag Golang Demo") } func B() error { return A()...

bug
backlog

I only recently discovered that calling `bugsnag.Configure` forks the current process. I'm (now) aware that it is mentioned in the documentation as a side note, but there is still I...

feature request
backlog

The code at https://github.com/bugsnag/bugsnag-go/blob/master/notifier.go#L47 worries me a little bit. Although goroutines are pretty cheap in go, I don't think it's idiomatic to just spawn goroutines anywhere you can. What are...

needs discussion
wip

### Expected behavior All errors make it to bugsnag, especially panics, even when Synchronous mode is off. ### Observed behavior I may be wrong, but looking at the code: there...

feature request
backlog

feature request
scheduled

## Goal I would like to expose this Shipper interface so that I can create a custom backend for any logging pipeline. My specific usecase is that I would like...