2018-10-24 05:13:10 -07:00
|
|
|
module github.com/prometheus/prometheus
|
|
|
|
|
2020-07-27 02:08:38 -07:00
|
|
|
go 1.14
|
2019-08-14 02:00:39 -07:00
|
|
|
|
2018-10-24 05:13:10 -07:00
|
|
|
require (
|
2020-10-08 00:26:01 -07:00
|
|
|
github.com/Azure/azure-sdk-for-go v46.4.0+incompatible
|
2020-07-07 02:37:46 -07:00
|
|
|
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
|
2020-10-08 00:26:01 -07:00
|
|
|
github.com/Azure/go-autorest/autorest v0.11.10
|
|
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.5
|
2020-02-17 13:13:33 -08:00
|
|
|
github.com/Azure/go-autorest/autorest/to v0.3.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect
|
2020-10-08 00:26:01 -07:00
|
|
|
github.com/HdrHistogram/hdrhistogram-go v0.9.0 // indirect
|
2020-06-26 03:25:58 -07:00
|
|
|
github.com/Microsoft/go-winio v0.4.14 // indirect
|
2020-02-17 13:13:33 -08:00
|
|
|
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d
|
2020-04-23 03:17:08 -07:00
|
|
|
github.com/armon/go-metrics v0.3.3 // indirect
|
2020-10-08 00:26:01 -07:00
|
|
|
github.com/aws/aws-sdk-go v1.35.5
|
2018-12-04 08:46:31 -08:00
|
|
|
github.com/cespare/xxhash v1.1.0
|
2020-06-26 03:25:58 -07:00
|
|
|
github.com/containerd/containerd v1.3.4 // indirect
|
testutil: Enriched Equals with diff on error. (#7053)
## Example:
```
exp: []chunks.Meta{chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e160), MinTime:1, MaxTime:2}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e180), MinTime:3, MaxTime:3}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e1a0), MinTime:5, MaxTime:5}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e1c0), MinTime:24, MaxTime:6}}
got: []chunks.Meta{chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e280), MinTime:1, MaxTime:2}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e2a0), MinTime:3, MaxTime:3}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e220), MinTime:5, MaxTime:5}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e240), MinTime:6, MaxTime:6}}
```
Now:
```
exp: []chunks.Meta{chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e740), MinTime:1, MaxTime:2}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e760), MinTime:3, MaxTime:3}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e780), MinTime:5, MaxTime:5}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e7a0), MinTime:24, MaxTime:6}}
got: []chunks.Meta{chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e800), MinTime:1, MaxTime:2}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e820), MinTime:3, MaxTime:3}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e860), MinTime:5, MaxTime:5}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e880), MinTime:6, MaxTime:6}}
Diff:
--- Expected
+++ Actual
@@ -50,3 +50,3 @@
}),
- MinTime: (int64) 24,
+ MinTime: (int64) 6,
MaxTime: (int64) 6
```
Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com>
2020-03-26 02:48:23 -07:00
|
|
|
github.com/davecgh/go-spew v1.1.1
|
2020-10-08 00:26:01 -07:00
|
|
|
github.com/dgryski/go-sip13 v0.0.0-20200911182023-62edffca9245
|
|
|
|
github.com/digitalocean/godo v1.46.0
|
2020-06-26 03:25:58 -07:00
|
|
|
github.com/docker/distribution v2.7.1+incompatible // indirect
|
2020-07-07 02:37:46 -07:00
|
|
|
github.com/docker/docker v17.12.0-ce-rc1.0.20200706150819-a40b877fbb9e+incompatible
|
2020-06-26 03:25:58 -07:00
|
|
|
github.com/docker/go-connections v0.4.0 // indirect
|
2019-07-31 08:12:43 -07:00
|
|
|
github.com/edsrzf/mmap-go v1.0.0
|
2020-02-17 13:13:33 -08:00
|
|
|
github.com/go-kit/kit v0.10.0
|
|
|
|
github.com/go-logfmt/logfmt v0.5.0
|
2020-04-23 03:17:08 -07:00
|
|
|
github.com/go-openapi/strfmt v0.19.5
|
2020-02-17 13:13:33 -08:00
|
|
|
github.com/gogo/protobuf v1.3.1
|
2020-10-08 00:26:01 -07:00
|
|
|
github.com/golang/snappy v0.0.2
|
|
|
|
github.com/google/pprof v0.0.0-20201007051231-1066cbb265c7
|
|
|
|
github.com/gophercloud/gophercloud v0.13.0
|
|
|
|
github.com/grpc-ecosystem/grpc-gateway v1.15.0
|
|
|
|
github.com/hashicorp/consul/api v1.7.0
|
2020-04-23 03:17:08 -07:00
|
|
|
github.com/hashicorp/go-hclog v0.12.2 // indirect
|
|
|
|
github.com/hashicorp/go-immutable-radix v1.2.0 // indirect
|
|
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
2020-10-08 00:26:01 -07:00
|
|
|
github.com/hetznercloud/hcloud-go v1.22.0
|
|
|
|
github.com/influxdata/influxdb v1.8.3
|
2020-06-25 16:28:03 -07:00
|
|
|
github.com/json-iterator/go v1.1.10
|
2020-08-24 05:03:47 -07:00
|
|
|
github.com/miekg/dns v1.1.31
|
2020-04-23 03:17:08 -07:00
|
|
|
github.com/mitchellh/mapstructure v1.2.2 // indirect
|
2020-06-26 03:25:58 -07:00
|
|
|
github.com/morikuni/aec v1.0.0 // indirect
|
2019-08-14 02:00:39 -07:00
|
|
|
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f
|
2020-02-17 13:13:33 -08:00
|
|
|
github.com/oklog/run v1.1.0
|
2019-08-13 01:34:14 -07:00
|
|
|
github.com/oklog/ulid v1.3.1
|
2020-06-26 03:25:58 -07:00
|
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
|
|
github.com/opencontainers/image-spec v1.0.1 // indirect
|
2020-07-10 15:41:20 -07:00
|
|
|
github.com/opentracing-contrib/go-stdlib v1.0.0
|
|
|
|
github.com/opentracing/opentracing-go v1.2.0
|
2020-02-17 13:13:33 -08:00
|
|
|
github.com/pkg/errors v0.9.1
|
testutil: Enriched Equals with diff on error. (#7053)
## Example:
```
exp: []chunks.Meta{chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e160), MinTime:1, MaxTime:2}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e180), MinTime:3, MaxTime:3}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e1a0), MinTime:5, MaxTime:5}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e1c0), MinTime:24, MaxTime:6}}
got: []chunks.Meta{chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e280), MinTime:1, MaxTime:2}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e2a0), MinTime:3, MaxTime:3}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e220), MinTime:5, MaxTime:5}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e240), MinTime:6, MaxTime:6}}
```
Now:
```
exp: []chunks.Meta{chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e740), MinTime:1, MaxTime:2}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e760), MinTime:3, MaxTime:3}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e780), MinTime:5, MaxTime:5}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e7a0), MinTime:24, MaxTime:6}}
got: []chunks.Meta{chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e800), MinTime:1, MaxTime:2}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e820), MinTime:3, MaxTime:3}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e860), MinTime:5, MaxTime:5}, chunks.Meta{Ref:0x0, Chunk:(*chunkenc.XORChunk)(0xc00000e880), MinTime:6, MaxTime:6}}
Diff:
--- Expected
+++ Actual
@@ -50,3 +50,3 @@
}),
- MinTime: (int64) 24,
+ MinTime: (int64) 6,
MaxTime: (int64) 6
```
Signed-off-by: Bartlomiej Plotka <bwplotka@gmail.com>
2020-03-26 02:48:23 -07:00
|
|
|
github.com/pmezard/go-difflib v1.0.0
|
2020-07-10 15:41:20 -07:00
|
|
|
github.com/prometheus/alertmanager v0.21.0
|
2020-06-25 16:28:03 -07:00
|
|
|
github.com/prometheus/client_golang v1.7.1
|
2020-02-17 13:13:33 -08:00
|
|
|
github.com/prometheus/client_model v0.2.0
|
2020-09-23 06:01:40 -07:00
|
|
|
github.com/prometheus/common v0.14.0
|
2020-07-27 02:08:38 -07:00
|
|
|
github.com/samuel/go-zookeeper v0.0.0-20200724154423-2164a8ac840e
|
2019-08-14 02:00:39 -07:00
|
|
|
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749
|
2020-10-08 00:26:01 -07:00
|
|
|
github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546
|
2020-07-27 02:08:38 -07:00
|
|
|
github.com/uber/jaeger-client-go v2.25.0+incompatible
|
2020-10-08 00:26:01 -07:00
|
|
|
github.com/uber/jaeger-lib v2.4.0+incompatible
|
2020-04-23 03:17:08 -07:00
|
|
|
go.mongodb.org/mongo-driver v1.3.2 // indirect
|
2020-10-08 00:26:01 -07:00
|
|
|
go.uber.org/atomic v1.7.0
|
2020-08-24 05:03:47 -07:00
|
|
|
go.uber.org/goleak v1.1.10
|
2020-10-08 00:26:01 -07:00
|
|
|
golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0
|
|
|
|
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
|
|
|
|
golang.org/x/sync v0.0.0-20200930132711-30421366ff76
|
|
|
|
golang.org/x/sys v0.0.0-20201008064518-c1f3e3309c71
|
2020-07-10 15:41:20 -07:00
|
|
|
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e
|
2020-10-08 00:26:01 -07:00
|
|
|
golang.org/x/tools v0.0.0-20201008025239-9df69603baec
|
|
|
|
google.golang.org/api v0.32.0
|
2018-12-04 08:46:31 -08:00
|
|
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
2019-07-23 07:53:50 -07:00
|
|
|
gopkg.in/fsnotify/fsnotify.v1 v1.4.7
|
2020-06-03 22:55:56 -07:00
|
|
|
gopkg.in/yaml.v2 v2.3.0
|
2020-07-10 15:41:20 -07:00
|
|
|
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
|
2020-06-26 03:25:58 -07:00
|
|
|
gotest.tools v2.2.0+incompatible // indirect
|
2020-10-05 08:25:15 -07:00
|
|
|
k8s.io/api v0.19.2
|
|
|
|
k8s.io/apimachinery v0.19.2
|
|
|
|
k8s.io/client-go v0.19.2
|
2020-02-17 13:13:33 -08:00
|
|
|
k8s.io/klog v1.0.0
|
2020-10-08 00:26:01 -07:00
|
|
|
k8s.io/klog/v2 v2.3.0
|
2018-10-24 05:13:10 -07:00
|
|
|
)
|
2018-12-04 06:01:12 -08:00
|
|
|
|
2020-10-06 05:54:12 -07:00
|
|
|
replace (
|
|
|
|
k8s.io/klog => github.com/simonpasquier/klog-gokit v0.3.0
|
|
|
|
k8s.io/klog/v2 => github.com/simonpasquier/klog-gokit/v2 v2.0.1
|
|
|
|
)
|
2020-07-27 02:08:38 -07:00
|
|
|
|
|
|
|
exclude (
|
|
|
|
// Exclude grpc v1.30.0 because of breaking changes. See #7621.
|
2020-08-24 05:03:47 -07:00
|
|
|
github.com/grpc-ecosystem/grpc-gateway v1.14.7
|
|
|
|
google.golang.org/api v0.30.0
|
2020-07-27 02:08:38 -07:00
|
|
|
|
|
|
|
// Exclude pre-go-mod kubernetes tags, as they are older
|
|
|
|
// than v0.x releases but are picked when we update the dependencies.
|
|
|
|
k8s.io/client-go v1.4.0
|
|
|
|
k8s.io/client-go v1.4.0+incompatible
|
|
|
|
k8s.io/client-go v1.5.0
|
|
|
|
k8s.io/client-go v1.5.0+incompatible
|
|
|
|
k8s.io/client-go v1.5.1
|
|
|
|
k8s.io/client-go v1.5.1+incompatible
|
|
|
|
k8s.io/client-go v10.0.0+incompatible
|
|
|
|
k8s.io/client-go v11.0.0+incompatible
|
|
|
|
k8s.io/client-go v2.0.0+incompatible
|
|
|
|
k8s.io/client-go v2.0.0-alpha.1+incompatible
|
|
|
|
k8s.io/client-go v3.0.0+incompatible
|
|
|
|
k8s.io/client-go v3.0.0-beta.0+incompatible
|
|
|
|
k8s.io/client-go v4.0.0+incompatible
|
|
|
|
k8s.io/client-go v4.0.0-beta.0+incompatible
|
|
|
|
k8s.io/client-go v5.0.0+incompatible
|
|
|
|
k8s.io/client-go v5.0.1+incompatible
|
|
|
|
k8s.io/client-go v6.0.0+incompatible
|
|
|
|
k8s.io/client-go v7.0.0+incompatible
|
|
|
|
k8s.io/client-go v8.0.0+incompatible
|
|
|
|
k8s.io/client-go v9.0.0+incompatible
|
|
|
|
k8s.io/client-go v9.0.0-invalid+incompatible
|
|
|
|
)
|