aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorBen Kochie <superq@gmail.com>2019-05-09 13:19:12 -0500
committerGitHub <noreply@github.com>2019-05-09 13:19:12 -0500
commitf97f01c46cfde2ff97b5539b7964f3044c04947b (patch)
tree8029dd5630d8786f272aa127fe2c63ecced1b9c5 /go.mod
parent78820098702e41929c84619720e19c89f8b2cdae (diff)
downloadprometheus_node_collector-f97f01c46cfde2ff97b5539b7964f3044c04947b.tar.bz2
prometheus_node_collector-f97f01c46cfde2ff97b5539b7964f3044c04947b.tar.xz
prometheus_node_collector-f97f01c46cfde2ff97b5539b7964f3044c04947b.zip
Update for 0.18.0 release (#1337)v0.18.0
* Update CHANGELOG for release. * Bump VERSION. * Update vendoring. Signed-off-by: Ben Kochie <superq@gmail.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod13
1 files changed, 7 insertions, 6 deletions
diff --git a/go.mod b/go.mod
index 19e6872..eb62ead 100644
--- a/go.mod
+++ b/go.mod
@@ -2,12 +2,13 @@ module github.com/prometheus/node_exporter
2 2
3require ( 3require (
4 github.com/beevik/ntp v0.2.0 4 github.com/beevik/ntp v0.2.0
5 github.com/beorn7/perks v1.0.0 // indirect
5 github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e 6 github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e
6 github.com/ema/qdisc v0.0.0-20180104102928-b307c22d3ce7 7 github.com/ema/qdisc v0.0.0-20180104102928-b307c22d3ce7
7 github.com/godbus/dbus v0.0.0-20190402143921-271e53dc4968 8 github.com/godbus/dbus v0.0.0-20190402143921-271e53dc4968
8 github.com/golang/protobuf v1.3.1 // indirect 9 github.com/golang/protobuf v1.3.1 // indirect
9 github.com/google/go-cmp v0.2.0 // indirect 10 github.com/google/go-cmp v0.3.0 // indirect
10 github.com/hodgesds/perf-utils v0.0.6 11 github.com/hodgesds/perf-utils v0.0.7
11 github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect 12 github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
12 github.com/lufia/iostat v0.0.0-20170605150913-9f7362b77ad3 13 github.com/lufia/iostat v0.0.0-20170605150913-9f7362b77ad3
13 github.com/mattn/go-xmlrpc v0.0.1 14 github.com/mattn/go-xmlrpc v0.0.1
@@ -16,16 +17,16 @@ require (
16 github.com/mdlayher/wifi v0.0.0-20180727163819-efdf3f4195d9 17 github.com/mdlayher/wifi v0.0.0-20180727163819-efdf3f4195d9
17 github.com/prometheus/client_golang v0.9.2 18 github.com/prometheus/client_golang v0.9.2
18 github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 19 github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
19 github.com/prometheus/common v0.2.0 20 github.com/prometheus/common v0.3.0
20 github.com/prometheus/procfs v0.0.0-20190503130316-740c07785007 21 github.com/prometheus/procfs v0.0.0-20190507043628-bc6930f2d510
21 github.com/siebenmann/go-kstat v0.0.0-20160321171754-d34789b79745 22 github.com/siebenmann/go-kstat v0.0.0-20160321171754-d34789b79745
22 github.com/sirupsen/logrus v1.4.1 // indirect 23 github.com/sirupsen/logrus v1.4.1 // indirect
23 github.com/soundcloud/go-runit v0.0.0-20150630195641-06ad41a06c4a 24 github.com/soundcloud/go-runit v0.0.0-20150630195641-06ad41a06c4a
24 github.com/stretchr/testify v1.3.0 // indirect 25 github.com/stretchr/testify v1.3.0 // indirect
25 go.uber.org/atomic v1.3.2 // indirect 26 go.uber.org/atomic v1.3.2 // indirect
26 go.uber.org/multierr v1.1.0 // indirect 27 go.uber.org/multierr v1.1.0 // indirect
27 golang.org/x/net v0.0.0-20190328230028-74de082e2cca // indirect 28 golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c // indirect
28 golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect 29 golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
29 golang.org/x/sys v0.0.0-20190402142545-baf5eb976a8c 30 golang.org/x/sys v0.0.0-20190507053917-2953c62de483
30 gopkg.in/alecthomas/kingpin.v2 v2.2.6 31 gopkg.in/alecthomas/kingpin.v2 v2.2.6
31) 32)