Categorygithub.com/codingbeard/raygun4go
modulepackage
1.1.0
Repository: https://github.com/codingbeard/raygun4go.git
Documentation: pkg.go.dev

# README

raygun4go

Build Status Coverage GoDoc GoReportcard

raygun4go adds Raygun-based error handling to your golang code. It catches all occuring errors, extracts as much information as possible and sends the error to Raygun via their REST-API.

Getting Started

Installation

  $ go get github.com/MindscapeHQ/raygun4go

Basic Usage

Include the package and then defer the HandleError-method as soon as possible in a context as global as possible. In webservers, this will probably be your request handling method, in all other programs it should be your main-method. Having found the right spot, just add the following example code:

raygun, err := raygun4go.New("appName", "apiKey")
if err != nil {
  log.Println("Unable to create Raygun client:", err.Error())
}
raygun.Silent(true)
defer raygun.HandleError()

where appName is the name of your app and apiKey is your Raygun-API-key. If your program runs into a panic now (which you can easily test by adding panic("foo") after the call to defer), the handler will print the resulting error message. If you remove the line

raygun.Silent(true)

the error will be sent to Raygun using your API-key.

Options

The client returned by New has several chainable option-setting methods

MethodDescription
Silent(bool)If set to true, this prevents the handler from sending the error to Raygun, printing it instead.
Request(*http.Request)Adds the responsible http.Request to the error.
Version(string)If your program has a version, you can add it here.
Tags([]string)Adds the given tags to the error. These can be used for filtering later.
CustomData(interface{})Add arbitrary custom data to you error. Will only reach Raygun if it works with json.Marshal().
User(string)Add the name of the affected user to the error.

Custom grouping

By default, the Raygun service will group errors together based on stacktrace content. If you have any cases where you want to control the error grouping yourself, then you can provide a custom-grouping-key callback function. Below is a simple example of this, that returns a hard-coded grouping key, which would cause all errors to be grouped together:

raygun.CustomGroupingKeyFunction(func(error, raygun4go.PostData)string{return "customGroupingKey"})

The callback takes the original error, and the Raygun PostData payload structure that is about to be serialized and sent to Raygun. In your callback, you can check these values to help build your own grouping key logic based on different cases that you want to control. For any error you don't want to group yourself, return an empty string - Raygun will then use the default grouping.

Bugs and feature requests

Have a bug or a feature request? Please first check the list of issues.

If your problem or idea is not addressed yet, please open a new issue.

# Functions

Current loads the current stacktrace into a given stack.
New creates and returns a Client, needing an appName and an apiKey.
Parse loads the stack trace (given as trace) into the given stack.

# Structs

Client is the struct holding your Raygun configuration and context information that is needed if an error occurs.
clientData is the struct holding information on this client.
context holds information on the program context.
detailsData is the container holding all information regarding the more detailed circumstances the error occured in.
errorData is the struct holding all technical information on the error.
postData is the outmost element of the Raygun-REST-API.
requestData holds all information on the request from the context.
stackTraceElement is one element of the error's stack trace.
user holds information on the affected user.

# Interfaces

UserCustomData is the interface that needs to be implemented by the custom data to be sent with the error.

# Type aliases

stackTrace is the stack the trace will be parsed into.