forked from newrelic-forks/microservices-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
23 lines (21 loc) · 936 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/GoogleCloudPlatform/microservices-demo/src/frontend
go 1.15
require (
cloud.google.com/go v0.72.0
github.com/golang/protobuf v1.4.3
github.com/google/uuid v1.1.2
github.com/gorilla/mux v1.8.0
github.com/newrelic/newrelic-telemetry-sdk-go v0.4.0
github.com/newrelic/opentelemetry-exporter-go v0.13.1-0.20201204162309-3cbb92367b23
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.6.0
go.opentelemetry.io/contrib/detectors/gcp v0.14.0
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux v0.14.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.14.0
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.14.0
go.opentelemetry.io/otel v0.14.0
go.opentelemetry.io/otel/exporters/stdout v0.14.0
go.opentelemetry.io/otel/sdk v0.14.0
golang.org/x/net v0.0.0-20201031054903-ff519b6c9102
google.golang.org/grpc v1.33.2
)