-
- Downloads
tests/e2e: add test to detect many-to-many errors
It happened quite a few times that some queries failed when Prometheus scrapes metrics from 2 kube-state-metrics instances. This situation can happen briefly when the kube-state-metrics instance is rolled out. It might also be more apparent when automatic sharding of kube-state-metrics is enabled. https://github.com/kubernetes-monitoring/kubernetes-mixin/pull/306 https://github.com/kubernetes-monitoring/kubernetes-mixin/pull/361 Signed-off-by:Simon Pasquier <spasquie@redhat.com>
... | @@ -3,29 +3,13 @@ module github.com/prometheus-operator/kube-prometheus | ... | @@ -3,29 +3,13 @@ module github.com/prometheus-operator/kube-prometheus |
go 1.13 | go 1.13 | ||
require ( | require ( | ||
github.com/Jeffail/gabs v1.2.0 | github.com/Jeffail/gabs v1.4.0 | ||
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect | |||
github.com/brancz/gojsontoyaml v0.0.0-20200602132005-3697ded27e8c | github.com/brancz/gojsontoyaml v0.0.0-20200602132005-3697ded27e8c | ||
github.com/campoy/embedmd v1.0.0 | github.com/campoy/embedmd v1.0.0 | ||
github.com/google/go-jsonnet v0.16.1-0.20200703153429-aaf50f5b655f | github.com/google/go-jsonnet v0.16.1-0.20200703153429-aaf50f5b655f | ||
github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d // indirect | |||
github.com/imdario/mergo v0.3.7 // indirect | |||
github.com/jsonnet-bundler/jsonnet-bundler v0.4.0 | github.com/jsonnet-bundler/jsonnet-bundler v0.4.0 | ||
github.com/kr/pretty v0.2.0 // indirect | github.com/pkg/errors v0.9.1 | ||
github.com/mattn/go-colorable v0.1.7 // indirect | github.com/prometheus/client_golang v1.8.0 | ||
github.com/pkg/errors v0.8.1 | k8s.io/apimachinery v0.19.3 | ||
github.com/prometheus/client_golang v1.5.1 | k8s.io/client-go v0.19.3 | ||
github.com/spf13/pflag v1.0.3 // indirect | |||
golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a // indirect | |||
golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a // indirect | |||
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect | |||
golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db // indirect | |||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect | |||
gopkg.in/inf.v0 v0.9.1 // indirect | |||
k8s.io/api v0.0.0-20190313235455-40a48860b5ab // indirect | |||
k8s.io/apimachinery v0.0.0-20190313205120-d7deff9243b1 | |||
k8s.io/client-go v11.0.0+incompatible | |||
k8s.io/klog v0.0.0-20190306015804-8e90cee79f82 // indirect | |||
k8s.io/utils v0.0.0-20190308190857-21c4ce38f2a7 // indirect | |||
sigs.k8s.io/yaml v1.1.0 // indirect | |||
) | ) |
This diff is collapsed.
Please register or sign in to comment