Skip to content

Commit b086b82

Browse files
authored
pdate Prometheus (#4715)
1 parent 1e229ce commit b086b82

File tree

399 files changed

+10013
-7535
lines changed

Some content is hidden

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

399 files changed

+10013
-7535
lines changed

go.mod

+10-10
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require (
1313
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137
1414
github.com/alicebob/miniredis/v2 v2.14.3
1515
github.com/armon/go-metrics v0.3.9
16-
github.com/aws/aws-sdk-go v1.43.10
16+
github.com/aws/aws-sdk-go v1.43.31
1717
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
1818
github.com/cespare/xxhash v1.1.0
1919
github.com/dustin/go-humanize v1.0.0
@@ -22,7 +22,7 @@ require (
2222
github.com/fsouza/fake-gcs-server v1.7.0
2323
github.com/go-kit/log v0.2.0
2424
github.com/go-openapi/strfmt v0.21.2
25-
github.com/go-openapi/swag v0.19.15
25+
github.com/go-openapi/swag v0.21.1
2626
github.com/go-redis/redis/v8 v8.11.4
2727
github.com/gocql/gocql v0.0.0-20200526081602-cd04bd7f22a7
2828
github.com/gogo/protobuf v1.3.2
@@ -36,7 +36,7 @@ require (
3636
github.com/hashicorp/consul/api v1.12.0
3737
github.com/hashicorp/go-cleanhttp v0.5.2
3838
github.com/hashicorp/go-sockaddr v1.0.2
39-
github.com/hashicorp/memberlist v0.3.0
39+
github.com/hashicorp/memberlist v0.3.1
4040
github.com/json-iterator/go v1.1.12
4141
github.com/lib/pq v1.3.0
4242
github.com/minio/minio-go/v7 v7.0.10
@@ -47,15 +47,15 @@ require (
4747
github.com/opentracing-contrib/go-stdlib v1.0.0
4848
github.com/opentracing/opentracing-go v1.2.0
4949
github.com/pkg/errors v0.9.1
50-
github.com/prometheus/alertmanager v0.23.1-0.20210914172521-e35efbddb66a
50+
github.com/prometheus/alertmanager v0.24.0
5151
github.com/prometheus/client_golang v1.12.1
5252
github.com/prometheus/client_model v0.2.0
5353
github.com/prometheus/common v0.33.0
54-
github.com/prometheus/prometheus v1.8.2-0.20220331181853-cd18da36058a
54+
github.com/prometheus/prometheus v1.8.2-0.20220411232225-ce6a643ee88f
5555
github.com/segmentio/fasthash v0.0.0-20180216231524-a72b379d632e
5656
github.com/sony/gobreaker v0.4.1
5757
github.com/spf13/afero v1.6.0
58-
github.com/stretchr/testify v1.7.0
58+
github.com/stretchr/testify v1.7.1
5959
github.com/thanos-io/thanos v0.22.0
6060
github.com/uber/jaeger-client-go v2.29.1+incompatible
6161
github.com/weaveworks/common v0.0.0-20210913144402-035033b78a78
@@ -64,11 +64,11 @@ require (
6464
go.etcd.io/etcd/api/v3 v3.5.0
6565
go.etcd.io/etcd/client/v3 v3.5.0
6666
go.uber.org/atomic v1.9.0
67-
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
67+
golang.org/x/net v0.0.0-20220325170049-de3da57026de
6868
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
69-
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8
70-
google.golang.org/api v0.70.0
71-
google.golang.org/grpc v1.44.0
69+
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65
70+
google.golang.org/api v0.74.0
71+
google.golang.org/grpc v1.45.0
7272
gopkg.in/yaml.v2 v2.4.0
7373
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
7474
sigs.k8s.io/yaml v1.2.0

go.sum

+136-77
Large diffs are not rendered by default.

pkg/alertmanager/alertmanager_http_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ func TestMultitenantAlertmanager_GetStatusHandler(t *testing.T) {
3333
cluster.DefaultProbeTimeout,
3434
cluster.DefaultProbeInterval,
3535
nil,
36+
false,
3637
)
3738
}
3839

pkg/alertmanager/multitenant.go

+1
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,7 @@ func NewMultitenantAlertmanager(cfg *MultitenantAlertmanagerConfig, store alerts
327327
cluster.DefaultProbeTimeout,
328328
cluster.DefaultProbeInterval,
329329
nil,
330+
false,
330331
)
331332
if err != nil {
332333
return nil, errors.Wrap(err, "unable to initialize gossip mesh")

vendor/github.com/Azure/go-autorest/autorest/azure/environments.go

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/go-autorest/autorest/azure/rp.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/go-autorest/autorest/go.mod

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/go-autorest/autorest/go.sum

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/asaskevich/govalidator/README.md

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/asaskevich/govalidator/patterns.go

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/asaskevich/govalidator/types.go

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)