2018-11-29 10:10:52 +00:00
|
|
|
module github.com/prometheus/statsd_exporter
|
|
|
|
|
2022-11-29 14:33:57 +00:00
|
|
|
go 1.18
|
2022-07-08 13:24:17 +00:00
|
|
|
|
2018-11-29 10:10:52 +00:00
|
|
|
require (
|
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
|
2022-11-29 14:33:57 +00:00
|
|
|
github.com/prometheus/client_golang v1.14.0
|
2022-11-01 10:17:54 +00:00
|
|
|
github.com/prometheus/client_model v0.3.0
|
2022-08-01 10:11:13 +00:00
|
|
|
github.com/prometheus/common v0.37.0
|
2022-05-06 10:51:47 +00:00
|
|
|
github.com/stvp/go-udp-testing v0.0.0-20201019212854-469649b16807
|
2019-06-17 16:34:56 +00:00
|
|
|
gopkg.in/alecthomas/kingpin.v2 v2.2.6
|
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 (
|
|
|
|
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
|
|
|
|
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
|
|
github.com/go-logfmt/logfmt v0.5.1 // indirect
|
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
2022-09-01 10:15:29 +00:00
|
|
|
github.com/prometheus/procfs v0.8.0 // indirect
|
2022-07-08 13:24:17 +00:00
|
|
|
golang.org/x/sys v0.0.0-20220708085239-5a0f0661e09d // indirect
|
2022-09-01 10:15:29 +00:00
|
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
2022-07-08 13:24:17 +00:00
|
|
|
)
|