forked from newrelic/go-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
46 lines (39 loc) · 1.04 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
package main
import (
"fmt"
"os"
"time"
"github.com/newrelic/go-agent"
)
func mustGetEnv(key string) string {
if val := os.Getenv(key); "" != val {
return val
}
panic(fmt.Sprintf("environment variable %s unset", key))
}
func main() {
cfg := newrelic.NewConfig("Short Lived App", mustGetEnv("NEW_RELIC_LICENSE_KEY"))
cfg.Logger = newrelic.NewDebugLogger(os.Stdout)
app, err := newrelic.NewApplication(cfg)
if nil != err {
fmt.Println(err)
os.Exit(1)
}
// Wait for the application to connect.
if err := app.WaitForConnection(5 * time.Second); nil != err {
fmt.Println(err)
}
// Do the tasks at hand. Perhaps record them using transactions and/or
// custom events.
tasks := []string{"white", "black", "red", "blue", "green", "yellow"}
for _, task := range tasks {
txn := app.StartTransaction("task", nil, nil)
time.Sleep(10 * time.Millisecond)
txn.End()
app.RecordCustomEvent("task", map[string]interface{}{
"color": task,
})
}
// Shut down the application to flush data to New Relic.
app.Shutdown(10 * time.Second)
}