Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Go library to report errors to airbrake and compatible servers
Go
Cannot retrieve the latest commit at this time.
| Type | Name | Latest commit message | Commit time |
|---|---|---|---|
| Failed to load latest commit information. | |||
|
|
LICENSE | ||
|
|
README | ||
|
|
airbrake.go | ||
|
|
airbrake_test.go | ||
|
|
handler.go | ||
README
Config
======
set airbrake.Endpoint and airbrake.ApiKey globals
Methods
=======
airbrake.Error(err) reports an error
airbrake.RequestError(err, *http.Request) can be used to add more context if you are in a http context
You can also automatically have this library report panics, use this method:
airbrake.CapturePanic(*http.Request)
example:
func serve(w http.ResponseWriter, r *http.Request) {
defer airbrake.CapturePanic(r)
[...]
panic("Oh no :-(") // will be recorded by airbrake
}