Skip to content

Commit 358eb6a

Browse files
committed
update kingpin and prometheus dependency
1 parent d51342f commit 358eb6a

File tree

388 files changed

+12564
-19162
lines changed

Some content is hidden

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

388 files changed

+12564
-19162
lines changed

go.mod

+16-16
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ go 1.20
44

55
require (
66
github.com/Shopify/sarama v1.38.1
7-
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
8-
github.com/alecthomas/units v0.0.0-20210912230133-d1bdfacee922 // indirect
7+
github.com/alecthomas/kingpin/v2 v2.3.2
8+
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
99
github.com/beorn7/perks v1.0.1 // indirect
10-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
10+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
1111
github.com/davecgh/go-spew v1.1.1 // indirect
1212
github.com/eapache/go-resiliency v1.3.0 // indirect
1313
github.com/eapache/go-xerial-snappy v0.0.0-20230111030713-bf00bc1b83b6 // indirect
1414
github.com/eapache/queue v1.1.0 // indirect
15-
github.com/golang/protobuf v1.5.2 // indirect
15+
github.com/golang/protobuf v1.5.3 // indirect
1616
github.com/golang/snappy v0.0.4 // indirect
1717
github.com/hashicorp/go-uuid v1.0.3 // indirect
1818
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
@@ -22,31 +22,31 @@ require (
2222
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
2323
github.com/klauspost/compress v1.15.14 // indirect
2424
github.com/krallistic/kazoo-go v0.0.0-20170526135507-a15279744f4e
25-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
25+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
2626
github.com/pkg/errors v0.9.1
27-
github.com/prometheus/client_golang v1.12.1
28-
github.com/prometheus/client_model v0.2.0 // indirect
29-
github.com/prometheus/common v0.32.1
30-
github.com/prometheus/procfs v0.7.3 // indirect
27+
github.com/prometheus/client_golang v1.15.1
28+
github.com/prometheus/client_model v0.4.0 // indirect
29+
github.com/prometheus/common v0.44.0
30+
github.com/prometheus/procfs v0.9.0 // indirect
3131
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
3232
github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da // indirect
3333
github.com/xdg/scram v1.0.3
3434
github.com/xdg/stringprep v1.0.3 // indirect
3535
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect
36-
golang.org/x/net v0.7.0 // indirect
37-
golang.org/x/sys v0.5.0 // indirect
38-
golang.org/x/text v0.7.0 // indirect
39-
google.golang.org/protobuf v1.27.1 // indirect
40-
gopkg.in/alecthomas/kingpin.v2 v2.2.6
36+
golang.org/x/net v0.10.0 // indirect
37+
golang.org/x/sys v0.8.0 // indirect
38+
golang.org/x/text v0.9.0 // indirect
39+
google.golang.org/protobuf v1.30.0 // indirect
4140
)
4241

4342
require k8s.io/klog/v2 v2.90.1
4443

4544
require (
46-
github.com/go-kit/log v0.1.0 // indirect
47-
github.com/go-logfmt/logfmt v0.5.0 // indirect
45+
github.com/go-kit/log v0.2.1 // indirect
46+
github.com/go-logfmt/logfmt v0.5.1 // indirect
4847
github.com/go-logr/logr v1.2.0 // indirect
4948
github.com/hashicorp/errwrap v1.0.0 // indirect
5049
github.com/hashicorp/go-multierror v1.1.1 // indirect
5150
github.com/pierrec/lz4/v4 v4.1.17 // indirect
51+
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
5252
)

go.sum

+34-451
Large diffs are not rendered by default.

kafka_exporter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import (
1616
"time"
1717

1818
"github.com/Shopify/sarama"
19+
kingpin "github.com/alecthomas/kingpin/v2"
1920
"github.com/krallistic/kazoo-go"
2021
"github.com/pkg/errors"
2122
"github.com/prometheus/client_golang/prometheus"
@@ -24,7 +25,6 @@ import (
2425
plogflag "github.com/prometheus/common/promlog/flag"
2526
"github.com/prometheus/common/version"
2627
"github.com/rcrowley/go-metrics"
27-
"gopkg.in/alecthomas/kingpin.v2"
2828
"k8s.io/klog/v2"
2929
)
3030

vendor/github.com/alecthomas/kingpin/v2/.travis.yml

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

vendor/gopkg.in/alecthomas/kingpin.v2/README.md vendor/github.com/alecthomas/kingpin/v2/README.md

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

vendor/gopkg.in/alecthomas/kingpin.v2/app.go vendor/github.com/alecthomas/kingpin/v2/app.go

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

0 commit comments

Comments
 (0)