-
Notifications
You must be signed in to change notification settings - Fork 301
/
Copy pathmain.go
51 lines (40 loc) · 962 Bytes
/
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
package main
import (
"fmt"
"net/http"
"os"
"github.com/labstack/echo/v4"
"github.com/newrelic/go-agent/v3/integrations/nrecho-v4"
"github.com/newrelic/go-agent/v3/newrelic"
)
func getUser(c echo.Context) error {
id := c.Param("id")
if txn := nrecho.FromContext(c); nil != txn {
txn.AddAttribute("userId", id)
}
return c.String(http.StatusOK, id)
}
func main() {
app, err := newrelic.NewApplication(
newrelic.ConfigAppName("Echo App"),
newrelic.ConfigLicense(os.Getenv("NEW_RELIC_LICENSE_KEY")),
newrelic.ConfigDebugLogger(os.Stdout),
)
if nil != err {
fmt.Println(err)
os.Exit(1)
}
// Echo instance
e := echo.New()
// The New Relic Middleware should be the first middleware registered
e.Use(nrecho.Middleware(app))
// Routes
e.GET("/home", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello, World!")
})
// Groups
g := e.Group("/user")
g.GET("/:id", getUser)
// Start server
e.Start(":8000")
}