forked from akashsharma95/otel-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
29 lines (27 loc) · 1.14 KB
/
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
24
25
26
27
28
29
module notesapp
go 1.14
require (
github.com/gin-gonic/gin v1.7.2
github.com/go-playground/validator/v10 v10.6.1 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/razorpay/goutils/tracing v1.0.2
github.com/ugorji/go v1.2.6 // indirect
go.opentelemetry.io/collector v0.27.0
go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.21.0
go.opentelemetry.io/contrib/propagators v0.21.0
go.opentelemetry.io/otel v1.0.0-RC1
go.opentelemetry.io/otel/exporters/jaeger v1.0.0-RC1
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.21.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.21.0
go.opentelemetry.io/otel/metric v0.21.0
go.opentelemetry.io/otel/sdk v1.0.0-RC1
go.opentelemetry.io/otel/sdk/metric v0.21.0
go.opentelemetry.io/otel/trace v1.0.0-RC1
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e // indirect
golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c // indirect
google.golang.org/grpc v1.38.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gorm.io/driver/sqlite v1.1.4
gorm.io/gorm v1.21.10
)