aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorBen Kochie <superq@gmail.com>2020-05-14 19:46:18 +0200
committerBen Kochie <superq@gmail.com>2020-05-14 19:46:18 +0200
commita582b3335a530a6a924f3e7dd5afbb0cdfec9d25 (patch)
tree8c977c176e0891fbd0e567318e54d5188f00cb1a /go.mod
parent3cedd344fd4ea8c1e6e1fb0854e824d5d8b2f24a (diff)
downloadprometheus_node_collector-a582b3335a530a6a924f3e7dd5afbb0cdfec9d25.tar.bz2
prometheus_node_collector-a582b3335a530a6a924f3e7dd5afbb0cdfec9d25.tar.xz
prometheus_node_collector-a582b3335a530a6a924f3e7dd5afbb0cdfec9d25.zip
Update Go modules
* Bump to Go 1.14 minimum version. * Update vendoring Fixes: https://github.com/prometheus/node_exporter/issues/1704 Signed-off-by: Ben Kochie <superq@gmail.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod30
1 files changed, 17 insertions, 13 deletions
diff --git a/go.mod b/go.mod
index de7db9d..8a7d4a5 100644
--- a/go.mod
+++ b/go.mod
@@ -2,33 +2,37 @@ module github.com/prometheus/node_exporter
2 2
3require ( 3require (
4 github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect 4 github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
5 github.com/beevik/ntp v0.2.0 5 github.com/beevik/ntp v0.3.0
6 github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf 6 github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf
7 github.com/ema/qdisc v0.0.0-20190904071900-b82c76788043 7 github.com/ema/qdisc v0.0.0-20190904071900-b82c76788043
8 github.com/go-kit/kit v0.10.0 8 github.com/go-kit/kit v0.10.0
9 github.com/godbus/dbus v0.0.0-20190402143921-271e53dc4968 9 github.com/godbus/dbus v0.0.0-20190402143921-271e53dc4968
10 github.com/golang/protobuf v1.3.3 // indirect 10 github.com/golang/protobuf v1.4.1 // indirect
11 github.com/hodgesds/perf-utils v0.0.8 11 github.com/hodgesds/perf-utils v0.0.8
12 github.com/jpillora/backoff v1.0.0 // indirect
12 github.com/lufia/iostat v1.1.0 13 github.com/lufia/iostat v1.1.0
13 github.com/mattn/go-xmlrpc v0.0.3 14 github.com/mattn/go-xmlrpc v0.0.3
14 github.com/mdlayher/genetlink v1.0.0 // indirect 15 github.com/mdlayher/genetlink v1.0.0 // indirect
15 github.com/mdlayher/netlink v1.1.0 // indirect 16 github.com/mdlayher/netlink v1.1.0 // indirect
16 github.com/mdlayher/wifi v0.0.0-20190303161829-b1436901ddee 17 github.com/mdlayher/wifi v0.0.0-20190303161829-b1436901ddee
18 github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect
17 github.com/pkg/errors v0.9.1 19 github.com/pkg/errors v0.9.1
18 github.com/prometheus/client_golang v1.4.1 20 github.com/prometheus/client_golang v1.6.0
19 github.com/prometheus/client_model v0.2.0 21 github.com/prometheus/client_model v0.2.0
20 github.com/prometheus/common v0.9.1 22 github.com/prometheus/common v0.10.0
21 github.com/prometheus/procfs v0.0.11 23 github.com/prometheus/procfs v0.0.11
22 github.com/siebenmann/go-kstat v0.0.0-20160321171754-d34789b79745 24 github.com/siebenmann/go-kstat v0.0.0-20200303194639-4e8294f9e9d5
23 github.com/soundcloud/go-runit v0.0.0-20150630195641-06ad41a06c4a 25 github.com/soundcloud/go-runit v0.0.0-20150630195641-06ad41a06c4a
24 go.uber.org/atomic v1.5.1 // indirect 26 go.uber.org/multierr v1.5.0 // indirect
25 go.uber.org/multierr v1.4.0 // indirect 27 golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37
26 golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 28 golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
27 golang.org/x/lint v0.0.0-20200130185559-910be7a94367 // indirect 29 golang.org/x/net v0.0.0-20200513185701-a91f0712d120 // indirect
28 golang.org/x/sys v0.0.0-20200217220822-9197077df867 30 golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a // indirect
29 golang.org/x/tools v0.0.0-20200216192241-b320d3a0f5a2 // indirect 31 golang.org/x/sys v0.0.0-20200513112337-417ce2331b5c
32 golang.org/x/tools v0.0.0-20200513201620-d5fe73897c97 // indirect
30 gopkg.in/alecthomas/kingpin.v2 v2.2.6 33 gopkg.in/alecthomas/kingpin.v2 v2.2.6
31 gopkg.in/yaml.v2 v2.2.8 34 gopkg.in/yaml.v2 v2.3.0
35 honnef.co/go/tools v0.0.1-2020.1.3 // indirect
32) 36)
33 37
34go 1.13 38go 1.14