Skip to content

Commit 9e5dedc

Browse files
authored
Merge pull request #1597 from codesome/vendor-prometheus
Vendor prometheus 2.12.0 and alertmanager 0.19.0
2 parents 9539ae1 + 0200fa1 commit 9e5dedc

File tree

1,493 files changed

+262786
-97753
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,493 files changed

+262786
-97753
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## master / unreleased
22

3+
* [CHANGE] `--alertmanager.configs.auto-slack-root` flag was dropped as auto Slack root is not supported anymore. #1597
4+
* [ENHANCEMENT] Upgraded Prometheus to 2.12.0 and Alertmanager to 0.19.0. #1597
5+
36
## 0.2.0 / 2019-09-05
47

58
This release has several exciting features, the most notable of them being setting `-ingester.spread-flushes` to potentially reduce your storage space by upto 50%.

go.mod

Lines changed: 20 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -3,64 +3,63 @@ module github.com/cortexproject/cortex
33
go 1.12
44

55
require (
6-
cloud.google.com/go v0.35.0
6+
cloud.google.com/go v0.44.1
77
github.com/Azure/azure-sdk-for-go v26.3.0+incompatible // indirect
88
github.com/Azure/go-autorest v11.5.1+incompatible // indirect
99
github.com/Masterminds/squirrel v0.0.0-20161115235646-20f192218cf5
1010
github.com/NYTimes/gziphandler v1.1.1
11-
github.com/aws/aws-sdk-go v1.15.90
11+
github.com/aws/aws-sdk-go v1.22.4
1212
github.com/bitly/go-hostpool v0.0.0-20171023180738-a3a6125de932 // indirect
1313
github.com/blang/semver v3.5.0+incompatible
1414
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
1515
github.com/bradfitz/gomemcache v0.0.0-20170208213004-1952afaa557d
1616
github.com/cenkalti/backoff v1.0.0 // indirect
1717
github.com/cespare/xxhash v1.1.0
18+
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
1819
github.com/coreos/go-semver v0.3.0 // indirect
20+
github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d // indirect
1921
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
2022
github.com/cznic/ql v1.2.0 // indirect
23+
github.com/dustin/go-humanize v1.0.0 // indirect
2124
github.com/facette/natsort v0.0.0-20181210072756-2cd4dd1e2dcb
2225
github.com/fluent/fluent-logger-golang v1.2.1 // indirect
2326
github.com/fsouza/fake-gcs-server v1.3.0
24-
github.com/go-kit/kit v0.8.0
27+
github.com/go-kit/kit v0.9.0
2528
github.com/gocql/gocql v0.0.0-20180113133114-697e7c57f99b
2629
github.com/gogo/googleapis v1.1.0 // indirect
27-
github.com/gogo/protobuf v1.2.1
30+
github.com/gogo/protobuf v1.2.2-0.20190730201129-28a6bbf47e48
2831
github.com/gogo/status v1.0.3
29-
github.com/golang/protobuf v1.3.1
32+
github.com/golang/protobuf v1.3.2
3033
github.com/golang/snappy v0.0.1
31-
github.com/gophercloud/gophercloud v0.0.0-20190307220656-fe1ba5ce12dd // indirect
34+
github.com/gorilla/context v1.1.1 // indirect
3235
github.com/gorilla/mux v1.6.2
3336
github.com/gorilla/websocket v1.4.0 // indirect
3437
github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4
3538
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect
3639
github.com/hashicorp/consul/api v1.1.0
3740
github.com/hashicorp/go-cleanhttp v0.5.1
3841
github.com/jonboulle/clockwork v0.1.0
39-
github.com/json-iterator/go v1.1.6
42+
github.com/json-iterator/go v1.1.7
4043
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
4144
github.com/kylelemons/godebug v0.0.0-20170820004349-d65d576e9348 // indirect
4245
github.com/lann/builder v0.0.0-20150808151131-f22ce00fd939 // indirect
4346
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
4447
github.com/lib/pq v1.0.0
4548
github.com/mattes/migrate v1.3.1
4649
github.com/mattn/go-sqlite3 v1.10.0 // indirect
47-
github.com/oklog/oklog v0.3.2 // indirect
48-
github.com/onsi/ginkgo v1.8.0 // indirect
49-
github.com/onsi/gomega v1.5.0 // indirect
5050
github.com/opentracing-contrib/go-grpc v0.0.0-20180928155321-4b5a12d3ff02
51-
github.com/opentracing-contrib/go-stdlib v0.0.0-20170113013457-1de4cc2120e7
51+
github.com/opentracing-contrib/go-stdlib v0.0.0-20190519235532-cf7a6c988dc9
5252
github.com/opentracing/opentracing-go v1.1.0
5353
github.com/philhofer/fwd v0.0.0-20160129035939-98c11a7a6ec8 // indirect
5454
github.com/pkg/errors v0.8.1
55-
github.com/prometheus/alertmanager v0.15.1
56-
github.com/prometheus/client_golang v1.0.0
57-
github.com/prometheus/common v0.4.1
58-
github.com/prometheus/prometheus v0.0.0-20190731144842-63ed2e28f1ac
59-
github.com/prometheus/tsdb v0.9.1
55+
github.com/prometheus/alertmanager v0.19.0
56+
github.com/prometheus/client_golang v1.1.0
57+
github.com/prometheus/common v0.6.0
58+
github.com/prometheus/prometheus v0.0.0-20190818123050-43acd0e2e93f
59+
github.com/satori/go.uuid v1.2.0 // indirect
6060
github.com/segmentio/fasthash v0.0.0-20180216231524-a72b379d632e
6161
github.com/sercand/kuberesolver v2.1.0+incompatible // indirect
6262
github.com/sirupsen/logrus v1.4.2 // indirect
63-
github.com/spaolacci/murmur3 v1.1.0 // indirect
6463
github.com/stretchr/testify v1.3.0
6564
github.com/tinylib/msgp v0.0.0-20161221055906-38a6f61a768d // indirect
6665
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
@@ -73,15 +72,10 @@ require (
7372
go.etcd.io/bbolt v1.3.3
7473
go.etcd.io/etcd v0.0.0-20190709142735-eb7dd97135a5
7574
go.uber.org/zap v1.10.0 // indirect
76-
golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5 // indirect
77-
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
78-
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
79-
golang.org/x/sys v0.0.0-20190602015325-4c4f7f33c9ed // indirect
80-
golang.org/x/text v0.3.2 // indirect
81-
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c
82-
google.golang.org/api v0.4.0
83-
google.golang.org/grpc v1.19.1
84-
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect
75+
golang.org/x/net v0.0.0-20190724013045-ca1201d0de80
76+
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
77+
google.golang.org/api v0.8.0
78+
google.golang.org/grpc v1.22.1
8579
gopkg.in/yaml.v2 v2.2.2
8680
)
8781

0 commit comments

Comments
 (0)