2021-02-19 09:52:01 +00:00
|
|
|
module github.com/prometheus-community/postgres_exporter
|
|
|
|
|
2023-03-05 20:40:54 +00:00
|
|
|
go 1.19
|
2021-02-19 09:52:01 +00:00
|
|
|
|
|
|
|
require (
|
2023-06-08 21:28:04 +00:00
|
|
|
github.com/DATA-DOG/go-sqlmock v1.5.0
|
2023-03-21 07:21:49 +00:00
|
|
|
github.com/alecthomas/kingpin/v2 v2.3.2
|
2022-08-26 14:49:54 +00:00
|
|
|
github.com/blang/semver/v4 v4.0.0
|
2022-05-25 09:27:42 +00:00
|
|
|
github.com/go-kit/log v0.2.1
|
2023-05-01 17:58:52 +00:00
|
|
|
github.com/lib/pq v1.10.9
|
2023-07-05 13:10:03 +00:00
|
|
|
github.com/prometheus/client_golang v1.16.0
|
2023-06-01 17:58:58 +00:00
|
|
|
github.com/prometheus/client_model v0.4.0
|
|
|
|
github.com/prometheus/common v0.44.0
|
2023-06-03 11:22:41 +00:00
|
|
|
github.com/prometheus/exporter-toolkit v0.10.0
|
2023-07-06 06:42:23 +00:00
|
|
|
github.com/smartystreets/goconvey v1.8.1
|
2021-02-19 09:52:01 +00:00
|
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
|
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2022-08-26 14:49:54 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2021-02-19 09:52:01 +00:00
|
|
|
)
|
2022-05-25 09:27:42 +00:00
|
|
|
|
|
|
|
require (
|
2023-01-24 16:57:31 +00:00
|
|
|
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
|
2022-05-25 09:27:42 +00:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2023-06-01 17:58:58 +00:00
|
|
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
2023-03-21 07:21:49 +00:00
|
|
|
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
2022-05-25 09:27:42 +00:00
|
|
|
github.com/go-logfmt/logfmt v0.5.1 // indirect
|
2023-06-01 17:58:58 +00:00
|
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
2023-06-08 21:28:04 +00:00
|
|
|
github.com/gopherjs/gopherjs v1.17.2 // indirect
|
2022-05-25 09:27:42 +00:00
|
|
|
github.com/jpillora/backoff v1.0.0 // indirect
|
2023-06-08 21:28:04 +00:00
|
|
|
github.com/jtolds/gls v4.20.0+incompatible // indirect
|
2023-03-21 07:21:49 +00:00
|
|
|
github.com/kr/pretty v0.3.1 // indirect
|
|
|
|
github.com/kr/text v0.2.0 // indirect
|
2023-01-25 13:16:35 +00:00
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
2022-05-25 09:27:42 +00:00
|
|
|
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
|
2023-07-05 13:10:03 +00:00
|
|
|
github.com/prometheus/procfs v0.10.1 // indirect
|
2023-06-01 17:58:58 +00:00
|
|
|
github.com/rogpeppe/go-internal v1.10.0 // indirect
|
2023-07-06 06:42:23 +00:00
|
|
|
github.com/smarty/assertions v1.15.0 // indirect
|
2023-03-21 07:21:49 +00:00
|
|
|
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
|
2023-06-03 11:22:41 +00:00
|
|
|
golang.org/x/crypto v0.8.0 // indirect
|
2023-06-01 17:58:58 +00:00
|
|
|
golang.org/x/net v0.10.0 // indirect
|
|
|
|
golang.org/x/oauth2 v0.8.0 // indirect
|
2023-07-05 13:10:03 +00:00
|
|
|
golang.org/x/sync v0.2.0 // indirect
|
2023-06-01 17:58:58 +00:00
|
|
|
golang.org/x/sys v0.8.0 // indirect
|
|
|
|
golang.org/x/text v0.9.0 // indirect
|
2023-01-24 16:57:31 +00:00
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
2023-06-01 17:58:58 +00:00
|
|
|
google.golang.org/protobuf v1.30.0 // indirect
|
2022-05-25 09:27:42 +00:00
|
|
|
)
|