This file is indexed.

/usr/share/gocode/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go is in golang-github-sirupsen-logrus-dev 0.8.7-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package airbrake

import (
	"errors"
	"fmt"

	"github.com/Sirupsen/logrus"
	"github.com/tobi/airbrake-go"
)

// AirbrakeHook to send exceptions to an exception-tracking service compatible
// with the Airbrake API.
type airbrakeHook struct {
	APIKey      string
	Endpoint    string
	Environment string
}

func NewHook(endpoint, apiKey, env string) *airbrakeHook {
	return &airbrakeHook{
		APIKey:      apiKey,
		Endpoint:    endpoint,
		Environment: env,
	}
}

func (hook *airbrakeHook) Fire(entry *logrus.Entry) error {
	airbrake.ApiKey = hook.APIKey
	airbrake.Endpoint = hook.Endpoint
	airbrake.Environment = hook.Environment

	var notifyErr error
	err, ok := entry.Data["error"].(error)
	if ok {
		notifyErr = err
	} else {
		notifyErr = errors.New(entry.Message)
	}

	airErr := airbrake.Notify(notifyErr)
	if airErr != nil {
		return fmt.Errorf("Failed to send error to Airbrake: %s", airErr)
	}

	return nil
}

func (hook *airbrakeHook) Levels() []logrus.Level {
	return []logrus.Level{
		logrus.ErrorLevel,
		logrus.FatalLevel,
		logrus.PanicLevel,
	}
}