2018-11-29 10:10:52 +00:00
|
|
|
module github.com/prometheus/statsd_exporter
|
|
|
|
|
2024-05-14 21:50:01 +00:00
|
|
|
go 1.21
|
2022-07-08 13:24:17 +00:00
|
|
|
|
2018-11-29 10:10:52 +00:00
|
|
|
require (
|
2023-12-01 10:51:20 +00:00
|
|
|
github.com/alecthomas/kingpin/v2 v2.4.0
|
2022-07-08 12:40:13 +00:00
|
|
|
github.com/go-kit/log v0.2.1
|
2021-04-28 16:12:24 +00:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
|
2024-09-12 07:54:15 +00:00
|
|
|
github.com/prometheus/client_golang v1.20.3
|
2024-08-18 14:41:59 +00:00
|
|
|
github.com/prometheus/client_model v0.6.1
|
2024-09-01 10:32:38 +00:00
|
|
|
github.com/prometheus/common v0.57.0
|
2024-01-15 22:03:46 +00:00
|
|
|
github.com/prometheus/exporter-toolkit v0.11.0
|
2022-05-06 10:51:47 +00:00
|
|
|
github.com/stvp/go-udp-testing v0.0.0-20201019212854-469649b16807
|
2021-03-18 10:15:17 +00:00
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2018-11-29 10:10:52 +00:00
|
|
|
)
|
2019-09-12 15:45:39 +00:00
|
|
|
|
2022-07-08 13:24:17 +00:00
|
|
|
require (
|
2024-08-18 14:41:59 +00:00
|
|
|
github.com/alecthomas/units v0.0.0-20240626203959-61d1e3462e30 // indirect
|
2022-07-08 13:24:17 +00:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2024-08-18 14:41:59 +00:00
|
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
2023-06-02 06:43:57 +00:00
|
|
|
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
2023-03-08 18:13:33 +00:00
|
|
|
github.com/go-logfmt/logfmt v0.6.0 // indirect
|
2023-06-02 06:43:57 +00:00
|
|
|
github.com/jpillora/backoff v1.0.0 // indirect
|
2024-08-18 14:41:59 +00:00
|
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
2023-06-02 06:43:57 +00:00
|
|
|
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
|
2024-08-18 14:41:59 +00:00
|
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
2023-03-08 18:13:33 +00:00
|
|
|
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
|
2024-08-18 14:41:59 +00:00
|
|
|
golang.org/x/crypto v0.26.0 // indirect
|
|
|
|
golang.org/x/net v0.28.0 // indirect
|
|
|
|
golang.org/x/oauth2 v0.22.0 // indirect
|
|
|
|
golang.org/x/sync v0.8.0 // indirect
|
|
|
|
golang.org/x/sys v0.24.0 // indirect
|
|
|
|
golang.org/x/text v0.17.0 // indirect
|
|
|
|
google.golang.org/protobuf v1.34.2 // indirect
|
2022-07-08 13:24:17 +00:00
|
|
|
)
|