|
1 | 1 | module github.com/danielqsj/kafka_exporter
|
2 | 2 |
|
3 |
| -go 1.20 |
| 3 | +go 1.23 |
4 | 4 |
|
5 | 5 | require (
|
6 |
| - github.com/Shopify/sarama v1.38.1 |
7 |
| - github.com/alecthomas/kingpin/v2 v2.3.2 |
8 |
| - github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect |
| 6 | + github.com/IBM/sarama v1.43.3 |
| 7 | + github.com/alecthomas/kingpin/v2 v2.4.0 |
| 8 | + github.com/krallistic/kazoo-go v0.0.0-20170526135507-a15279744f4e |
| 9 | + github.com/pkg/errors v0.9.1 |
| 10 | + github.com/prometheus/client_golang v1.20.0 |
| 11 | + github.com/prometheus/common v0.55.0 |
| 12 | + github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 |
| 13 | + github.com/xdg/scram v1.0.5 |
| 14 | + k8s.io/klog/v2 v2.130.1 |
| 15 | +) |
| 16 | + |
| 17 | +require ( |
| 18 | + github.com/alecthomas/units v0.0.0-20240626203959-61d1e3462e30 // indirect |
9 | 19 | github.com/beorn7/perks v1.0.1 // indirect
|
10 |
| - github.com/cespare/xxhash/v2 v2.2.0 // indirect |
| 20 | + github.com/cespare/xxhash/v2 v2.3.0 // indirect |
11 | 21 | github.com/davecgh/go-spew v1.1.1 // indirect
|
12 |
| - github.com/eapache/go-resiliency v1.3.0 // indirect |
13 |
| - github.com/eapache/go-xerial-snappy v0.0.0-20230111030713-bf00bc1b83b6 // indirect |
| 22 | + github.com/eapache/go-resiliency v1.7.0 // indirect |
| 23 | + github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect |
14 | 24 | github.com/eapache/queue v1.1.0 // indirect
|
15 |
| - github.com/golang/protobuf v1.5.3 // indirect |
| 25 | + github.com/go-kit/log v0.2.1 // indirect |
| 26 | + github.com/go-logfmt/logfmt v0.6.0 // indirect |
| 27 | + github.com/go-logr/logr v1.4.2 // indirect |
16 | 28 | github.com/golang/snappy v0.0.4 // indirect
|
| 29 | + github.com/hashicorp/errwrap v1.1.0 // indirect |
| 30 | + github.com/hashicorp/go-multierror v1.1.1 // indirect |
17 | 31 | github.com/hashicorp/go-uuid v1.0.3 // indirect
|
18 | 32 | github.com/jcmturner/aescts/v2 v2.0.0 // indirect
|
19 | 33 | github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
|
20 | 34 | github.com/jcmturner/gofork v1.7.6 // indirect
|
21 |
| - github.com/jcmturner/gokrb5/v8 v8.4.3 // indirect |
| 35 | + github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect |
22 | 36 | github.com/jcmturner/rpc/v2 v2.0.3 // indirect
|
23 |
| - github.com/klauspost/compress v1.15.14 // indirect |
24 |
| - github.com/krallistic/kazoo-go v0.0.0-20170526135507-a15279744f4e |
25 |
| - github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect |
26 |
| - github.com/pkg/errors v0.9.1 |
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 |
31 |
| - github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 |
32 |
| - github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da // indirect |
33 |
| - github.com/xdg/scram v1.0.3 |
| 37 | + github.com/klauspost/compress v1.17.9 // indirect |
| 38 | + github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
| 39 | + github.com/pierrec/lz4/v4 v4.1.21 // indirect |
| 40 | + github.com/prometheus/client_model v0.6.1 // indirect |
| 41 | + github.com/prometheus/procfs v0.15.1 // indirect |
| 42 | + github.com/samuel/go-zookeeper v0.0.0-20201211165307-7117e9ea2414 // indirect |
34 | 43 | github.com/xdg/stringprep v1.0.3 // indirect
|
35 |
| - golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa // indirect |
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 |
40 |
| -) |
41 |
| - |
42 |
| -require k8s.io/klog/v2 v2.100.1 |
43 |
| - |
44 |
| -require ( |
45 |
| - github.com/go-kit/log v0.2.1 // indirect |
46 |
| - github.com/go-logfmt/logfmt v0.5.1 // indirect |
47 |
| - github.com/go-logr/logr v1.2.0 // indirect |
48 |
| - github.com/hashicorp/errwrap v1.0.0 // indirect |
49 |
| - github.com/hashicorp/go-multierror v1.1.1 // indirect |
50 |
| - github.com/pierrec/lz4/v4 v4.1.17 // indirect |
51 | 44 | github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
|
| 45 | + golang.org/x/crypto v0.26.0 // indirect |
| 46 | + golang.org/x/net v0.28.0 // indirect |
| 47 | + golang.org/x/sys v0.24.0 // indirect |
| 48 | + golang.org/x/text v0.17.0 // indirect |
| 49 | + google.golang.org/protobuf v1.34.2 // indirect |
52 | 50 | )
|
0 commit comments