aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorPaul Gier <pgier@redhat.com>2019-05-10 13:04:06 -0500
committerBen Kochie <superq@gmail.com>2019-05-10 13:04:06 -0500
commitd0a66c4c403fc93b209b98b8cc9f4d1e2ddf2356 (patch)
tree3ddc65324502535cc07aa9e9a8d93c6e3c97b8d8 /go.mod
parentf97f01c46cfde2ff97b5539b7964f3044c04947b (diff)
downloadprometheus_node_collector-d0a66c4c403fc93b209b98b8cc9f4d1e2ddf2356.tar.bz2
prometheus_node_collector-d0a66c4c403fc93b209b98b8cc9f4d1e2ddf2356.tar.xz
prometheus_node_collector-d0a66c4c403fc93b209b98b8cc9f4d1e2ddf2356.zip
use sys/unix package instead of syscall (#1340)
According to the golang docs, the syscall package is deprecated. https://golang.org/pkg/syscall This updates collectors to use the x/sys/unix package instead. Also updates the vendored x/sys/unix module to latest. Signed-off-by: Paul Gier <pgier@redhat.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.mod b/go.mod
index eb62ead..3a0fb37 100644
--- a/go.mod
+++ b/go.mod
@@ -27,6 +27,6 @@ require (
27 go.uber.org/multierr v1.1.0 // indirect 27 go.uber.org/multierr v1.1.0 // indirect
28 golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c // indirect 28 golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c // indirect
29 golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect 29 golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
30 golang.org/x/sys v0.0.0-20190507053917-2953c62de483 30 golang.org/x/sys v0.0.0-20190509141414-a5b02f93d862
31 gopkg.in/alecthomas/kingpin.v2 v2.2.6 31 gopkg.in/alecthomas/kingpin.v2 v2.2.6
32) 32)