Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gin-contrib/rollbar

Middleware to integrate with rollbar error monitoring.
https://github.com/gin-contrib/rollbar

gin gin-contrib middleware rollbar

Last synced: 29 days ago
JSON representation

Middleware to integrate with rollbar error monitoring.

Awesome Lists containing this project

README

        

# rollbar

[![Run Tests](https://github.com/gin-contrib/rollbar/actions/workflows/go.yml/badge.svg)](https://github.com/gin-contrib/rollbar/actions/workflows/go.yml)
[![codecov](https://codecov.io/gh/gin-contrib/rollbar/branch/master/graph/badge.svg)](https://codecov.io/gh/gin-contrib/rollbar)
[![Go Report Card](https://goreportcard.com/badge/github.com/gin-contrib/rollbar)](https://goreportcard.com/report/github.com/gin-contrib/rollbar)
[![GoDoc](https://godoc.org/github.com/gin-contrib/rollbar?status.svg)](https://godoc.org/github.com/gin-contrib/rollbar)
[![Join the chat at https://gitter.im/gin-gonic/gin](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/gin-gonic/gin)

Middleware to integrate with [rollbar](https://rollbar.com/) error monitoring. It uses [rollbar-go](https://github.com/rollbar/rollbar-go) SDK that reports errors and logs messages.

## Usage

Download and install it:

```sh
go get github.com/gin-contrib/rollbar
```

Import it in your code:

```go
import "github.com/gin-contrib/rollbar"
```

## Example

```go
package main

import (
"log"

"github.com/gin-contrib/rollbar"
"github.com/gin-gonic/gin"

roll "github.com/rollbar/rollbar-go"
)

func main() {
roll.SetToken("MY_TOKEN")
// roll.SetEnvironment("production") // defaults to "development"

r := gin.Default()
r.Use(rollbar.Recovery(true))

if err := r.Run(":8080"); err != nil {
log.Fatal(err)
}
}
```