logrus_sentry

package module
v0.8.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 4, 2019 License: MIT Imports: 10 Imported by: 0

README

Sentry Hook for Logrus

GoDoc Release Build Status Coverage Status Go Report Card Code Climate BCH compliance

Sentry provides both self-hosted and hosted solutions for exception tracking. Both client and server are open source.

Usage

Every sentry application defined on the server gets a different DSN. In the example below replace YOUR_DSN with the one created for your application.

import (
  "github.com/sirupsen/logrus"
  "github.com/evalphobia/logrus_sentry"
)

func main() {
  log       := logrus.New()
  hook, err := logrus_sentry.NewSentryHook(YOUR_DSN, []logrus.Level{
    logrus.PanicLevel,
    logrus.FatalLevel,
    logrus.ErrorLevel,
  })

  if err == nil {
    log.Hooks.Add(hook)
  }
}

If you wish to initialize a SentryHook with tags, you can use the NewWithTagsSentryHook constructor to provide default tags:

tags := map[string]string{
  "site": "example.com",
}
levels := []logrus.Level{
  logrus.PanicLevel,
  logrus.FatalLevel,
  logrus.ErrorLevel,
}
hook, err := logrus_sentry.NewWithTagsSentryHook(YOUR_DSN, tags, levels)

If you wish to initialize a SentryHook with an already initialized raven client, you can use the NewWithClientSentryHook constructor:

import (
  "github.com/sirupsen/logrus"
  "github.com/evalphobia/logrus_sentry"
  "github.com/getsentry/raven-go"
)

func main() {
  log := logrus.New()

  client, err := raven.New(YOUR_DSN)
  if err != nil {
      log.Fatal(err)
  }

  hook, err := logrus_sentry.NewWithClientSentryHook(client, []logrus.Level{
    logrus.PanicLevel,
    logrus.FatalLevel,
    logrus.ErrorLevel,
  })

  if err == nil {
    log.Hooks.Add(hook)
  }
}

hook, err := NewWithClientSentryHook(client, []logrus.Level{
	logrus.ErrorLevel,
})

Special fields

Some logrus fields have a special meaning in this hook, and they will be especially processed by Sentry.

Field key Description
event_id Each logged event is identified by the event_id, which is hexadecimal string representing a UUID4 value. You can manually specify the identifier of a log event by supplying this field. The event_id string should be in one of the following UUID format: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx and urn:uuid:xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)
user_name Name of the user who is in the context of the event
user_email Email of the user who is in the context of the event
user_id ID of the user who is in the context of the event
user_ip IP of the user who is in the context of the event
server_name Also known as hostname, it is the name of the server which is logging the event (hostname.example.com)
tags tags are raven.Tags struct from github.com/getsentry/raven-go and override default tags data
fingerprint fingerprint is an string array, that allows you to affect sentry's grouping of events as detailed in the sentry documentation
logger logger is the part of the application which is logging the event. In go this usually means setting it to the name of the package.
http_request http_request is the in-coming request(*http.Request). The detailed request data are sent to Sentry.

Timeout

Timeout is the time the sentry hook will wait for a response from the sentry server.

If this time elapses with no response from the server an error will be returned.

If Timeout is set to 0 the SentryHook will not wait for a reply and will assume a correct delivery.

The SentryHook has a default timeout of 100 milliseconds when created with a call to NewSentryHook. This can be changed by assigning a value to the Timeout field:

hook, _ := logrus_sentry.NewSentryHook(...)
hook.Timeout = 20*time.Second

Enabling Stacktraces

By default the hook will not send any stacktraces. However, this can be enabled with:

hook, _ := logrus_sentry.NewSentryHook(...)
hook.StacktraceConfiguration.Enable = true

Subsequent calls to logger.Error and above will create a stacktrace.

Other configuration options are:

  • StacktraceConfiguration.Level the logrus level at which to start capturing stacktraces.
  • StacktraceConfiguration.Skip how many stack frames to skip before stacktrace starts recording.
  • StacktraceConfiguration.Context the number of lines to include around a stack frame for context.
  • StacktraceConfiguration.InAppPrefixes the prefixes that will be matched against the stack frame to identify it as in_app
  • StacktraceConfiguration.IncludeErrorBreadcrumb whether to create a breadcrumb with the full text of error

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Breadcrumbs struct {
	Values []Value `json:"values"`
}

utility classes for breadcrumb support

func (b *Breadcrumbs) Class() string

type SentryHook

type SentryHook struct {
	// Timeout sets the time to wait for a delivery error from the sentry server.
	// If this is set to zero the server will not wait for any response and will
	// consider the message correctly sent.
	//
	// This is ignored for asynchronous hooks. If you want to set a timeout when
	// using an async hook (to bound the length of time that hook.Flush can take),
	// you probably want to create your own raven.Client and set
	// ravenClient.Transport.(*raven.HTTPTransport).Client.Timeout to set a
	// timeout on the underlying HTTP request instead.
	Timeout                 time.Duration
	StacktraceConfiguration StackTraceConfiguration
	// contains filtered or unexported fields
}

SentryHook delivers logs to a sentry server.

func NewAsyncSentryHook added in v0.2.8

func NewAsyncSentryHook(DSN string, levels []logrus.Level) (*SentryHook, error)

NewAsyncSentryHook creates a hook same as NewSentryHook, but in asynchronous mode.

func NewAsyncWithClientSentryHook added in v0.2.8

func NewAsyncWithClientSentryHook(client *raven.Client, levels []logrus.Level) (*SentryHook, error)

NewAsyncWithClientSentryHook creates a hook same as NewWithClientSentryHook, but in asynchronous mode.

func NewAsyncWithTagsSentryHook added in v0.2.8

func NewAsyncWithTagsSentryHook(DSN string, tags map[string]string, levels []logrus.Level) (*SentryHook, error)

NewAsyncWithTagsSentryHook creates a hook same as NewWithTagsSentryHook, but in asynchronous mode.

func NewSentryHook

func NewSentryHook(DSN string, levels []logrus.Level) (*SentryHook, error)

NewSentryHook creates a hook to be added to an instance of logger and initializes the raven client. This method sets the timeout to 100 milliseconds.

func NewWithClientSentryHook

func NewWithClientSentryHook(client *raven.Client, levels []logrus.Level) (*SentryHook, error)

NewWithClientSentryHook creates a hook using an initialized raven client. This method sets the timeout to 100 milliseconds.

func NewWithTagsSentryHook

func NewWithTagsSentryHook(DSN string, tags map[string]string, levels []logrus.Level) (*SentryHook, error)

NewWithTagsSentryHook creates a hook with tags to be added to an instance of logger and initializes the raven client. This method sets the timeout to 100 milliseconds.

func (*SentryHook) AddErrorHandler added in v0.8.0

func (hook *SentryHook) AddErrorHandler(fn func(entry *logrus.Entry, err error))

AddErrorHandler adds a error handler function used when Sentry returns error.

func (*SentryHook) AddExtraFilter added in v0.2.1

func (hook *SentryHook) AddExtraFilter(name string, fn func(interface{}) interface{})

AddExtraFilter adds a custom filter function.

func (*SentryHook) AddIgnore added in v0.2.1

func (hook *SentryHook) AddIgnore(name string)

AddIgnore adds field name to ignore.

func (*SentryHook) Fire

func (hook *SentryHook) Fire(entry *logrus.Entry) error

Fire is called when an event should be sent to sentry Special fields that sentry uses to give more information to the server are extracted from entry.Data (if they are found) These fields are: error, logger, server_name, http_request, tags

func (*SentryHook) Flush added in v0.2.8

func (hook *SentryHook) Flush()

Flush waits for the log queue to empty. This function only does anything in asynchronous mode.

func (*SentryHook) Levels

func (hook *SentryHook) Levels() []logrus.Level

Levels returns the available logging levels.

func (*SentryHook) SetDefaultLoggerName added in v0.5.1

func (hook *SentryHook) SetDefaultLoggerName(name string)

SetDefaultLoggerName sets default logger name tag.

func (*SentryHook) SetEnvironment added in v0.2.6

func (hook *SentryHook) SetEnvironment(environment string)

SetEnvironment sets environment tag.

func (*SentryHook) SetHttpContext added in v0.5.1

func (hook *SentryHook) SetHttpContext(h *raven.Http)

SetHttpContext sets http client.

func (*SentryHook) SetIgnoreErrors added in v0.5.1

func (hook *SentryHook) SetIgnoreErrors(errs ...string) error

SetIgnoreErrors sets ignoreErrorsRegexp.

func (*SentryHook) SetIncludePaths added in v0.5.1

func (hook *SentryHook) SetIncludePaths(p []string)

SetIncludePaths sets includePaths.

func (*SentryHook) SetRelease added in v0.2.6

func (hook *SentryHook) SetRelease(release string)

SetRelease sets release tag.

func (*SentryHook) SetSampleRate added in v0.5.1

func (hook *SentryHook) SetSampleRate(rate float32) error

SetSampleRate sets sampling rate.

func (*SentryHook) SetServerName added in v0.4.3

func (hook *SentryHook) SetServerName(serverName string)

SetServerName sets server_name tag.

func (*SentryHook) SetTagsContext added in v0.5.1

func (hook *SentryHook) SetTagsContext(t map[string]string)

SetTagsContext sets tags.

func (*SentryHook) SetUserContext added in v0.5.1

func (hook *SentryHook) SetUserContext(u *raven.User)

SetUserContext sets user.

type StackTraceConfiguration

type StackTraceConfiguration struct {
	// whether stacktraces should be enabled
	Enable bool
	// the level at which to start capturing stacktraces
	Level logrus.Level
	// how many stack frames to skip before stacktrace starts recording
	Skip int
	// the number of lines to include around a stack frame for context
	Context int
	// the prefixes that will be matched against the stack frame.
	// if the stack frame's package matches one of these prefixes
	// sentry will identify the stack frame as "in_app"
	InAppPrefixes []string
	// whether sending exception type should be enabled.
	SendExceptionType bool
	// whether the exception type and message should be switched.
	SwitchExceptionTypeAndMessage bool
	// whether to include a breadcrumb with the full error stack
	IncludeErrorBreadcrumb bool
}

StackTraceConfiguration allows for configuring stacktraces

type Stacktracer added in v0.2.2

type Stacktracer interface {
	GetStacktrace() *raven.Stacktrace
}

The Stacktracer interface allows an error type to return a raven.Stacktrace.

type Value added in v0.8.2

type Value struct {
	Timestamp int64       `json:"timestamp"`
	Type      string      `json:"type"`
	Message   string      `json:"message"`
	Category  string      `json:"category"`
	Level     string      `json:"string"`
	Data      interface{} `json:"data"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL