2020-05-24 18:38:05 +00:00
|
|
|
module github.com/prometheus-community/windows_exporter
|
2019-10-19 14:50:13 +00:00
|
|
|
|
2023-03-25 09:32:18 +00:00
|
|
|
go 1.19
|
2019-10-19 14:50:13 +00:00
|
|
|
|
|
|
|
require (
|
2023-03-20 11:58:22 +00:00
|
|
|
github.com/Microsoft/hcsshim v0.9.8
|
2023-03-12 23:32:17 +00:00
|
|
|
github.com/alecthomas/kingpin/v2 v2.3.2
|
2021-11-14 11:50:42 +00:00
|
|
|
github.com/dimchansky/utfbom v1.1.1
|
2022-05-16 23:12:38 +00:00
|
|
|
github.com/go-kit/log v0.2.1
|
2022-05-16 22:50:05 +00:00
|
|
|
github.com/go-ole/go-ole v1.2.6
|
2022-10-25 05:49:12 +00:00
|
|
|
github.com/leoluk/perflib_exporter v0.2.0
|
2022-11-14 11:03:36 +00:00
|
|
|
github.com/prometheus/client_golang v1.14.0
|
2022-10-24 22:58:04 +00:00
|
|
|
github.com/prometheus/client_model v0.3.0
|
2023-03-12 08:11:20 +00:00
|
|
|
github.com/prometheus/common v0.42.0
|
2023-03-12 08:35:07 +00:00
|
|
|
github.com/prometheus/exporter-toolkit v0.9.1
|
2022-08-21 08:28:00 +00:00
|
|
|
github.com/sirupsen/logrus v1.9.0
|
2023-03-12 00:27:31 +00:00
|
|
|
github.com/yusufpapurcu/wmi v1.2.2
|
2023-03-12 08:35:07 +00:00
|
|
|
go.opencensus.io v0.23.0 // indirect
|
2023-04-10 11:57:37 +00:00
|
|
|
golang.org/x/sys v0.7.0
|
2022-07-25 11:25:10 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
2019-10-19 14:50:13 +00:00
|
|
|
)
|
2023-03-17 17:07:52 +00:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/Microsoft/go-winio v0.4.17 // 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/containerd/cgroups v1.0.1 // indirect
|
|
|
|
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
|
|
|
|
github.com/go-logfmt/logfmt v0.5.1 // indirect
|
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
|
|
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
|
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
|
|
github.com/jpillora/backoff v1.0.0 // indirect
|
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
|
|
|
|
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
|
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
|
|
github.com/prometheus/procfs v0.9.0 // indirect
|
|
|
|
github.com/rogpeppe/go-internal v1.9.0 // indirect
|
|
|
|
github.com/xhit/go-str2duration/v2 v2.1.0 // indirect
|
|
|
|
golang.org/x/crypto v0.7.0 // indirect
|
|
|
|
golang.org/x/net v0.8.0 // indirect
|
|
|
|
golang.org/x/oauth2 v0.6.0 // indirect
|
|
|
|
golang.org/x/sync v0.1.0 // indirect
|
|
|
|
golang.org/x/text v0.8.0 // indirect
|
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
|
|
google.golang.org/protobuf v1.28.1 // indirect
|
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
|
|
)
|