Airbrake Golang Notifier Example import "gopkg.in/airbrake/gobrake.v1" airbrake = gobrake.NewNotifier(projectId, apiKey) airbrake.SetContext("environment", "production") if err := processRequest(req); err != nil { go airbrake.Notify(err, req) }