/usr/share/doc/golang-github-tobi-airbrake-go-dev/README is in golang-github-tobi-airbrake-go-dev 0.0~git20150109-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 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
}
|