Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 506 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 506 Bytes

Airbrake Golang Notifier Build Status

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)
}