forked from bugsnag/bugsnag-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
120 lines (104 loc) · 2.9 KB
/
main.go
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package main
import (
"context"
"fmt"
"log"
"net/http"
"os"
"strconv"
"strings"
"time"
"github.com/bugsnag/bugsnag-go"
"github.com/bugsnag/bugsnag-go/martini"
"github.com/go-martini/martini"
)
func main() {
m := martini.Classic()
config := bugsnag.Configuration{
APIKey: os.Getenv("API_KEY"),
Endpoints: bugsnag.Endpoints{
Notify: os.Getenv("BUGSNAG_ENDPOINT"),
Sessions: os.Getenv("BUGSNAG_ENDPOINT"),
},
AppVersion: os.Getenv("APP_VERSION"),
AppType: os.Getenv("APP_TYPE"),
Hostname: os.Getenv("HOSTNAME"),
}
if notifyReleaseStages := os.Getenv("NOTIFY_RELEASE_STAGES"); notifyReleaseStages != "" {
config.NotifyReleaseStages = strings.Split(notifyReleaseStages, ",")
}
if releaseStage := os.Getenv("RELEASE_STAGE"); releaseStage != "" {
config.ReleaseStage = releaseStage
}
if filters := os.Getenv("PARAMS_FILTERS"); filters != "" {
config.ParamsFilters = []string{filters}
}
acs, err := strconv.ParseBool(os.Getenv("AUTO_CAPTURE_SESSIONS"))
if err == nil {
config.AutoCaptureSessions = acs
}
bugsnag.Configure(config)
// Increase publish rate for testing
bugsnag.DefaultSessionPublishInterval = time.Millisecond * 300
m.Use(martini.Recovery())
m.Use(bugsnagmartini.AutoNotify())
m.Get("/autonotify-then-recover", unhandledCrash)
m.Get("/handled", handledError)
m.Get("/session", session)
m.Get("/autonotify", autonotify)
m.Get("/onbeforenotify", onBeforeNotify)
m.Get("/recover", dontDie)
m.Get("/user", user)
m.RunOnAddr(":" + os.Getenv("SERVER_PORT"))
}
func unhandledCrash() {
// Invalid type assertion, will panic
func(a interface{}) string {
return a.(string)
}(struct{}{})
}
func handledError(r *http.Request) {
if _, err := os.Open("nonexistent_file.txt"); err != nil {
bugsnag.Notify(err, r.Context())
}
}
func session() {
log.Println("single session")
}
func dontDie(r *http.Request) {
defer bugsnag.Recover(r.Context())
panic("Request killed but recovered")
}
func user() {
bugsnag.Notify(fmt.Errorf("oops"), bugsnag.User{
Id: "test-user-id",
Name: "test-user-name",
Email: "test-user-email",
})
}
func onBeforeNotify(r *http.Request) {
bugsnag.OnBeforeNotify(
func(event *bugsnag.Event, config *bugsnag.Configuration) error {
if event.Message == "Ignore this error" {
return fmt.Errorf("not sending errors to ignore")
}
// continue notifying as normal
if event.Message == "Change error message" {
event.Message = "Error message was changed"
}
return nil
})
bugsnag.Notify(fmt.Errorf("Ignore this error"))
time.Sleep(100 * time.Millisecond)
bugsnag.Notify(fmt.Errorf("Don't ignore this error"))
time.Sleep(100 * time.Millisecond)
bugsnag.Notify(fmt.Errorf("Change error message"))
time.Sleep(100 * time.Millisecond)
}
func autonotify(r *http.Request) {
go func(ctx context.Context) {
defer func() { recover() }()
defer bugsnag.AutoNotify(ctx)
panic("Go routine killed with auto notify")
}(r.Context())
}