forked from seznam/slo-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
32 lines (28 loc) · 1.29 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
module github.com/seznam/slo-exporter
go 1.14
require (
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535
github.com/go-kit/kit v0.10.0
github.com/go-test/deep v1.0.6
github.com/gorilla/mux v1.7.4
github.com/grafana/loki v1.5.0
github.com/hashicorp/go-multierror v1.1.0
github.com/hpcloud/tail v1.0.0
github.com/iancoleman/strcase v0.0.0-20191112232945-16388991a334
github.com/prometheus/client_golang v1.6.0
github.com/prometheus/common v0.10.0
github.com/prometheus/prometheus v1.8.2-0.20200213233353-b90be6f32a33
github.com/sirupsen/logrus v1.6.0
github.com/spf13/viper v1.7.0
github.com/stretchr/testify v1.6.0
golang.org/x/exp v0.0.0-20200513190911-00229845015e
gonum.org/v1/gonum v0.7.0
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/yaml.v2 v2.3.0
)
// Taken from Loki project https://github.com/grafana/loki/blob/master/go.mod#L66
replace github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v36.2.0+incompatible
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.0+incompatible
// Without this, it attempts to upgrade to v0.18.x which has some conflicts with upstream Prometheus.
// Also, v0.17.5 is chosen to be consistent with Thanos and more clear than using a commit hash.
replace k8s.io/client-go => k8s.io/client-go v0.17.5