forked from open-telemetry/opentelemetry-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
66 lines (64 loc) · 2.82 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
module github.com/open-telemetry/opentelemetry-collector
go 1.14
require (
contrib.go.opencensus.io/exporter/jaeger v0.1.1-0.20190430175949-e8b55949d948
contrib.go.opencensus.io/exporter/ocagent v0.6.0
contrib.go.opencensus.io/exporter/prometheus v0.1.0
contrib.go.opencensus.io/resource v0.1.2
github.com/VividCortex/gohistogram v1.0.0 // indirect
github.com/apache/thrift v0.0.0-20161221203622-b2a4d4ae21c7
github.com/bmizerany/perks v0.0.0-20141205001514-d9a9656a3a4b // indirect
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/census-instrumentation/opencensus-proto v0.2.1
github.com/client9/misspell v0.3.4
github.com/go-kit/kit v0.9.0
github.com/gogo/googleapis v1.3.0 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e
github.com/golang/protobuf v1.3.5
github.com/golangci/golangci-lint v1.24.0
github.com/google/addlicense v0.0.0-20200301095109-7c013a14f2e2
github.com/google/uuid v1.1.1
github.com/gorilla/handlers v1.4.2 // indirect
github.com/gorilla/mux v1.7.3
github.com/grpc-ecosystem/grpc-gateway v1.11.1
github.com/hashicorp/consul/api v1.2.0 // indirect
github.com/jaegertracing/jaeger v1.17.0
github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024
github.com/mjibson/esc v0.2.0
github.com/open-telemetry/opentelemetry-proto v0.3.0
github.com/openzipkin/zipkin-go v0.2.1
github.com/orijtech/prometheus-go-metrics-exporter v0.0.4
github.com/ory/go-acc v0.2.1
github.com/ory/x v0.0.109 // indirect
github.com/pavius/impi v0.0.0-20180302134524-c1cbdcb8df2b
github.com/pkg/errors v0.9.1
github.com/prashantv/protectmem v0.0.0-20171002184600-e20412882b3a // indirect
github.com/prometheus/client_golang v1.5.1
github.com/prometheus/common v0.9.1
github.com/prometheus/procfs v0.0.11
github.com/prometheus/prometheus v1.8.2-0.20190924101040-52e0504f83ea
github.com/rs/cors v1.6.0
github.com/securego/gosec v0.0.0-20200316084457-7da9f46445fd
github.com/shirou/gopsutil v2.20.4+incompatible
github.com/sirupsen/logrus v1.5.0 // indirect
github.com/soheilhy/cmux v0.1.4
github.com/spf13/cast v1.3.1
github.com/spf13/cobra v0.0.6
github.com/spf13/viper v1.6.2
github.com/streadway/quantile v0.0.0-20150917103942-b0c588724d25 // indirect
github.com/stretchr/testify v1.5.1
github.com/tcnksm/ghr v0.13.0
github.com/uber-go/atomic v1.4.0 // indirect
github.com/uber/jaeger-lib v2.2.0+incompatible
github.com/uber/tchannel-go v1.10.0 // indirect
go.opencensus.io v0.22.3
go.uber.org/zap v1.10.0
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e // indirect
golang.org/x/sys v0.0.0-20200408040146-ea54a3c99b9b
golang.org/x/tools v0.0.0-20200428211428-0c9eba77bc32 // indirect
google.golang.org/api v0.10.0 // indirect
google.golang.org/genproto v0.0.0-20200408120641-fbb3ad325eb7
google.golang.org/grpc v1.28.1
gopkg.in/yaml.v2 v2.2.8
honnef.co/go/tools v0.0.1-2020.1.3
)