forked from flitnetics/jaeger-objectstorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
50 lines (36 loc) · 2.05 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 jaeger-s3
go 1.16
require (
github.com/cortexproject/cortex v1.7.1-0.20210323110114-8a2e2c1eeb65
github.com/grafana/loki v1.6.1
github.com/hashicorp/go-hclog v0.15.0
github.com/jaegertracing/jaeger v1.17.1
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/pierrec/lz4/v4 v4.1.4 // indirect
github.com/prometheus/common v0.20.0
github.com/prometheus/prometheus v1.8.2-0.20210324152458-c7a62b95cea0
github.com/spf13/viper v1.7.0
github.com/weaveworks/common v0.0.0-20210225171135-bd288de53d57
google.golang.org/grpc v1.37.0 // indirect
)
replace github.com/hpcloud/tail => github.com/grafana/tail v0.0.0-20201004203643-7aa4e4a91f03
replace github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v36.2.0+incompatible
// Keeping this same as Cortex to avoid dependency issues.
replace k8s.io/client-go => k8s.io/client-go v0.19.4
replace k8s.io/api => k8s.io/api v0.19.4
replace github.com/hashicorp/consul => github.com/hashicorp/consul v1.5.1
// >v1.2.0 has some conflict with prometheus/alertmanager. Hence prevent the upgrade till it's fixed.
replace github.com/satori/go.uuid => github.com/satori/go.uuid v1.2.0
// Use fork of gocql that has gokit logs and Prometheus metrics.
replace github.com/gocql/gocql => github.com/grafana/gocql v0.0.0-20200605141915-ba5dc39ece85
// Same as Cortex, we can't upgrade to grpc 1.30.0 until go.etcd.io/etcd will support it.
replace google.golang.org/grpc => google.golang.org/grpc v1.29.1
// Same as Cortex
// Using a 3rd-party branch for custom dialer - see https://github.com/bradfitz/gomemcache/pull/86
replace github.com/bradfitz/gomemcache => github.com/themihai/gomemcache v0.0.0-20180902122335-24332e2d58ab
// Fix errors like too many arguments in call to "github.com/go-openapi/errors".Required
// have (string, string)
// want (string, string, interface {})
replace github.com/go-openapi/errors => github.com/go-openapi/errors v0.19.4
replace github.com/go-openapi/validate => github.com/go-openapi/validate v0.19.8
replace github.com/grafana/loki v1.6.1 => github.com/muhammadn/loki v1.6.9