aboutsummaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorksherryBAE <44226893+ksherryBAE@users.noreply.github.com>2019-11-15 23:12:57 +0000
committerBen Kochie <superq@gmail.com>2019-11-16 00:12:57 +0100
commitaede04172cbcd072629e0a5f43cd0435e26a28d4 (patch)
treeb8752e10fa80cc2b2ad0aa655529fb67223ad3f2 /go.mod
parent20fe5bfb5be4caf3c8c11533b7fb35cb97d810f5 (diff)
downloadprometheus_node_collector-aede04172cbcd072629e0a5f43cd0435e26a28d4.tar.bz2
prometheus_node_collector-aede04172cbcd072629e0a5f43cd0435e26a28d4.tar.xz
prometheus_node_collector-aede04172cbcd072629e0a5f43cd0435e26a28d4.zip
Adding TLS to node exporter - cleaner version (#1277)
Add support for https connections. Signed-off-by: ksherryBAE <kieran.sherry@baesystems.com> Signed-off-by: James Ritchie <james.g.ritchie@baesystems.com> Signed-off-by: Simon Pasquier <spasquie@redhat.com> Signed-off-by: Ben RIdley <benridley29@gmail.com>
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod2
1 files changed, 2 insertions, 0 deletions
diff --git a/go.mod b/go.mod
index 43c90eb..c1a58fb 100644
--- a/go.mod
+++ b/go.mod
@@ -11,6 +11,7 @@ require (
11 github.com/mattn/go-xmlrpc v0.0.1 11 github.com/mattn/go-xmlrpc v0.0.1
12 github.com/mdlayher/genetlink v0.0.0-20190828143517-e35f2bf499b9 // indirect 12 github.com/mdlayher/genetlink v0.0.0-20190828143517-e35f2bf499b9 // indirect
13 github.com/mdlayher/wifi v0.0.0-20190303161829-b1436901ddee 13 github.com/mdlayher/wifi v0.0.0-20190303161829-b1436901ddee
14 github.com/pkg/errors v0.8.1
14 github.com/prometheus/client_golang v1.0.0 15 github.com/prometheus/client_golang v1.0.0
15 github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 16 github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
16 github.com/prometheus/common v0.7.0 17 github.com/prometheus/common v0.7.0
@@ -22,6 +23,7 @@ require (
22 golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect 23 golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
23 golang.org/x/sys v0.0.0-20190902133755-9109b7679e13 24 golang.org/x/sys v0.0.0-20190902133755-9109b7679e13
24 gopkg.in/alecthomas/kingpin.v2 v2.2.6 25 gopkg.in/alecthomas/kingpin.v2 v2.2.6
26 gopkg.in/yaml.v2 v2.2.2
25) 27)
26 28
27go 1.13 29go 1.13