mirror of
https://github.com/imgproxy/imgproxy.git
synced 2024-11-24 08:12:38 +02:00
575960e50c
* support reporting errors to Sentry * add documentation for sentry configuration
67 lines
1.3 KiB
Go
67 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/bugsnag/bugsnag-go"
|
|
"github.com/getsentry/raven-go"
|
|
"github.com/honeybadger-io/honeybadger-go"
|
|
)
|
|
|
|
var (
|
|
bugsnagEnabled bool
|
|
honeybadgerEnabled bool
|
|
sentryEnabled bool
|
|
|
|
headersReplacer = strings.NewReplacer("-", "_")
|
|
)
|
|
|
|
func initErrorsReporting() {
|
|
if len(conf.BugsnagKey) > 0 {
|
|
bugsnag.Configure(bugsnag.Configuration{
|
|
APIKey: conf.BugsnagKey,
|
|
ReleaseStage: conf.BugsnagStage,
|
|
})
|
|
bugsnagEnabled = true
|
|
}
|
|
|
|
if len(conf.HoneybadgerKey) > 0 {
|
|
honeybadger.Configure(honeybadger.Configuration{
|
|
APIKey: conf.HoneybadgerKey,
|
|
Env: conf.HoneybadgerEnv,
|
|
})
|
|
honeybadgerEnabled = true
|
|
}
|
|
|
|
if len(conf.SentryDSN) > 0 {
|
|
raven.SetDSN(conf.SentryDSN)
|
|
raven.SetEnvironment(conf.SentryEnvironment)
|
|
raven.SetRelease(conf.SentryRelease)
|
|
|
|
sentryEnabled = true
|
|
}
|
|
}
|
|
|
|
func reportError(err error, req *http.Request) {
|
|
if bugsnagEnabled {
|
|
bugsnag.Notify(err, req)
|
|
}
|
|
|
|
if honeybadgerEnabled {
|
|
headers := make(honeybadger.CGIData)
|
|
|
|
for k, v := range req.Header {
|
|
key := "HTTP_" + headersReplacer.Replace(strings.ToUpper(k))
|
|
headers[key] = v[0]
|
|
}
|
|
|
|
honeybadger.Notify(err, req.URL, headers)
|
|
}
|
|
|
|
if sentryEnabled {
|
|
raven.SetHttpContext(raven.NewHttp(req))
|
|
raven.CaptureError(err, nil)
|
|
}
|
|
}
|