mirror of
https://github.com/1f349/dendrite.git
synced 2025-04-03 10:45:04 +01:00
48 lines
975 B
Markdown
48 lines
975 B
Markdown
|
# Airbrake Golang Notifier [](https://travis-ci.org/airbrake/gobrake)
|
||
|
|
||
|
<img src="http://f.cl.ly/items/3J3h1L05222X3o1w2l2L/golang.jpg" width=800px>
|
||
|
|
||
|
# Example
|
||
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
|
||
|
"gopkg.in/airbrake/gobrake.v2"
|
||
|
)
|
||
|
|
||
|
var airbrake = gobrake.NewNotifier(1234567, "FIXME")
|
||
|
|
||
|
func init() {
|
||
|
airbrake.AddFilter(func(notice *gobrake.Notice) *gobrake.Notice {
|
||
|
notice.Context["environment"] = "production"
|
||
|
return notice
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
defer airbrake.Close()
|
||
|
defer airbrake.NotifyOnPanic()
|
||
|
|
||
|
airbrake.Notify(errors.New("operation failed"), nil)
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Ignoring notices
|
||
|
|
||
|
```go
|
||
|
airbrake.AddFilter(func(notice *gobrake.Notice) *gobrake.Notice {
|
||
|
if notice.Context["environment"] == "development" {
|
||
|
// Ignore notices in development environment.
|
||
|
return nil
|
||
|
}
|
||
|
return notice
|
||
|
})
|
||
|
```
|
||
|
|
||
|
## Logging
|
||
|
|
||
|
You can use [glog fork](https://github.com/airbrake/glog) to send your logs to Airbrake.
|