Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 716 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 716 Bytes

XLog to Sentry Output

godoc

xlog-sentry is an xlog to Sentry output for github.com/rs/xlog.

Install

go get github.com/trong/xlog-sentry

Usage

o := xlogsentry.NewSentryOutput(YOUR_DSN, nil)
o.Timeout = 300 * time.Millisecond
o.StacktraceConfiguration.Enable = true

l := xlog.New(xlog.Config{
	Output: o,
	Fields: xlog.F{
	    "role": "my-service",
	},
})

l.Errorf("What: %s", "happens?")

Licenses

All source code is licensed under the MIT License.