Skip to content

Commit d6310af

Browse files
codesomepracucci
andauthored
Upgrade Prometheus to release-2.20 branch (#2902)
* Upgrade Prometheus to release-2.20 branch Signed-off-by: Ganesh Vernekar <[email protected]> * Fix test Signed-off-by: Ganesh Vernekar <[email protected]> * Updated go.sum Signed-off-by: Marco Pracucci <[email protected]> * Update CHANGELOG Signed-off-by: Ganesh Vernekar <[email protected]> Co-authored-by: Marco Pracucci <[email protected]>
1 parent 071502d commit d6310af

File tree

317 files changed

+13194
-4886
lines changed

Some content is hidden

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

317 files changed

+13194
-4886
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* [CHANGE] Added ruler to the single binary when started with `-target=all` (default). #2854
1919
* [CHANGE] Experimental TSDB: compact head when opening TSDB. This should only affect ingester startup after it was unable to compact head in previous run. #2870
2020
* [CHANGE] Metric `cortex_overrides_last_reload_successful` has been renamed to `cortex_runtime_config_last_reload_successful`. #2874
21+
* [CHANGE] HipChat support has been removed from the alertmanager (because removed from the Prometheus upstream too). #2902
2122
* [FEATURE] Introduced `ruler.for-outage-tolerance`, Max time to tolerate outage for restoring "for" state of alert. #2783
2223
* [FEATURE] Introduced `ruler.for-grace-period`, Minimum duration between alert and restored "for" state. This is maintained only for alerts with configured "for" time greater than grace period. #2783
2324
* [FEATURE] Introduced `ruler.resend-delay`, Minimum amount of time to wait before resending an alert to Alertmanager. #2783
@@ -56,7 +57,7 @@
5657
* `s3.http.idle-conn-timeout`
5758
* `s3.http.response-header-timeout`
5859
* `s3.http.insecure-skip-verify`
59-
* [ENHANCEMENT] Prometheus upgraded. #2798 #2849 #2867
60+
* [ENHANCEMENT] Prometheus upgraded. #2798 #2849 #2867 #2902
6061
* Optimized labels regex matchers for patterns containing literals (eg. `foo.*`, `.*foo`, `.*foo.*`)
6162
* [ENHANCEMENT] Add metric `cortex_ruler_config_update_failures_total` to Ruler to track failures of loading rules files. #2857
6263
* [ENHANCEMENT] Experimental Alertmanager: Alertmanager configuration persisted to object storage using an experimental API that accepts and returns YAML-based Alertmanager configuration. #2768

go.mod

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/NYTimes/gziphandler v1.1.1
1212
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d
1313
github.com/armon/go-metrics v0.3.3
14-
github.com/aws/aws-sdk-go v1.31.9
14+
github.com/aws/aws-sdk-go v1.33.5
1515
github.com/blang/semver v3.5.0+incompatible
1616
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
1717
github.com/cespare/xxhash v1.1.0
@@ -28,49 +28,45 @@ require (
2828
github.com/gomodule/redigo v2.0.0+incompatible
2929
github.com/gorilla/mux v1.7.3
3030
github.com/grpc-ecosystem/go-grpc-middleware v1.1.0
31-
github.com/hashicorp/consul/api v1.4.0
31+
github.com/hashicorp/consul/api v1.5.0
3232
github.com/hashicorp/go-cleanhttp v0.5.1
3333
github.com/hashicorp/go-sockaddr v1.0.2
34-
github.com/hashicorp/memberlist v0.2.0
34+
github.com/hashicorp/memberlist v0.2.2
3535
github.com/json-iterator/go v1.1.10
3636
github.com/lib/pq v1.3.0
3737
github.com/mitchellh/go-wordwrap v1.0.0
3838
github.com/ncw/swift v1.0.50
3939
github.com/oklog/ulid v1.3.1
4040
github.com/opentracing-contrib/go-grpc v0.0.0-20180928155321-4b5a12d3ff02
41-
github.com/opentracing-contrib/go-stdlib v0.0.0-20190519235532-cf7a6c988dc9
42-
github.com/opentracing/opentracing-go v1.1.1-0.20200124165624-2876d2018785
41+
github.com/opentracing-contrib/go-stdlib v1.0.0
42+
github.com/opentracing/opentracing-go v1.2.0
4343
github.com/pkg/errors v0.9.1
44-
github.com/prometheus/alertmanager v0.20.0
44+
github.com/prometheus/alertmanager v0.21.0
4545
github.com/prometheus/client_golang v1.7.1
4646
github.com/prometheus/client_model v0.2.0
4747
github.com/prometheus/common v0.10.0
48-
github.com/prometheus/prometheus v1.8.2-0.20200711170716-492061b24c00
48+
github.com/prometheus/prometheus v1.8.2-0.20200720162558-f762a9ec77b3
4949
github.com/rafaeljusto/redigomock v0.0.0-20190202135759-257e089e14a1
5050
github.com/segmentio/fasthash v0.0.0-20180216231524-a72b379d632e
5151
github.com/spf13/afero v1.2.2
5252
github.com/stretchr/testify v1.5.1
5353
github.com/thanos-io/thanos v0.13.1-0.20200625180332-f078faed1b96
54-
github.com/uber/jaeger-client-go v2.23.1+incompatible
54+
github.com/uber/jaeger-client-go v2.24.0+incompatible
5555
github.com/weaveworks/common v0.0.0-20200512154658-384f10054ec5
5656
go.etcd.io/bbolt v1.3.5-0.20200615073812-232d8fc87f50
5757
go.etcd.io/etcd v0.5.0-alpha.5.0.20200520232829-54ba9589114f
5858
go.uber.org/atomic v1.6.0
5959
go.uber.org/zap v1.14.1 // indirect
60-
golang.org/x/net v0.0.0-20200602114024-627f9648deb9
61-
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a
62-
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
63-
google.golang.org/api v0.26.0
60+
golang.org/x/net v0.0.0-20200707034311-ab3426394381
61+
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
62+
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e
63+
google.golang.org/api v0.29.0
6464
google.golang.org/grpc v1.29.1
6565
gopkg.in/yaml.v2 v2.3.0
66-
gopkg.in/yaml.v3 v3.0.0-20200603094226-e3079894b1e8
66+
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
6767
sigs.k8s.io/yaml v1.2.0
6868
)
6969

70-
replace github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v36.2.0+incompatible
71-
72-
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.0+incompatible
73-
7470
// Override since git.apache.org is down. The docs say to fetch from github.
7571
replace git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999
7672

0 commit comments

Comments
 (0)