-
Notifications
You must be signed in to change notification settings - Fork 4
/
go.mod
50 lines (47 loc) · 1.95 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
module github.com/signalfx/ingest-protocols
go 1.18
require (
github.com/apache/thrift v0.16.0
github.com/gobwas/glob v0.2.3
github.com/gogo/protobuf v1.3.2
github.com/golang/protobuf v1.5.2
github.com/golang/snappy v0.0.4
github.com/gorilla/mux v1.8.0
github.com/jaegertracing/jaeger v1.38.0
github.com/mailru/easyjson v0.7.7
github.com/opentracing/opentracing-go v1.2.0
github.com/prometheus/common v0.37.0
github.com/prometheus/prometheus v0.38.0
github.com/signalfx/com_signalfx_metrics_protobuf v0.0.3
github.com/signalfx/gohelpers v0.0.0-20151202220853-ac9f0e053f15
github.com/signalfx/golib/v3 v3.3.46
github.com/signalfx/sapm-proto v0.12.0
github.com/smartystreets/assertions v1.13.0
github.com/smartystreets/goconvey v1.7.2
github.com/stretchr/testify v1.8.0
go.opentelemetry.io/proto/otlp v0.19.0
google.golang.org/grpc v1.49.0
google.golang.org/protobuf v1.28.1
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/gogo/googleapis v1.4.1 // indirect
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.1 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/jtolds/gls v4.20.0+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/signalfx/gohistogram v0.0.0-20160107210732-1ccfd2ff5083 // indirect
github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.23.0 // indirect
golang.org/x/net v0.0.0-20220809184613-07c6da5e1ced // indirect
golang.org/x/sys v0.0.0-20220808155132-1c4a2a72c664 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20220808204814-fd01256a5276 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)