aboutsummaryrefslogtreecommitdiff
path: root/node_exporter.go
diff options
context:
space:
mode:
authorRichard Hartmann <richih.mailinglist@gmail.com>2016-01-13 00:32:50 +0100
committerRichard Hartmann <rih@space.net>2016-01-13 18:29:52 +0100
commitaee580d8d8fa0b7fe0257d83100878b6915d004f (patch)
tree7632a1f1ff98ec2329b729372c0cc8cd62a62021 /node_exporter.go
parent6b506f0736bf96c1a0e43c9055dba6f4f91197fc (diff)
downloadprometheus_node_collector-aee580d8d8fa0b7fe0257d83100878b6915d004f.tar.bz2
prometheus_node_collector-aee580d8d8fa0b7fe0257d83100878b6915d004f.tar.xz
prometheus_node_collector-aee580d8d8fa0b7fe0257d83100878b6915d004f.zip
Introduce entropy collector for Linux
Diffstat (limited to 'node_exporter.go')
-rw-r--r--node_exporter.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_exporter.go b/node_exporter.go
index 330de34..c9b9f1e 100644
--- a/node_exporter.go
+++ b/node_exporter.go
@@ -39,7 +39,7 @@ var (
39 listenAddress = flag.String("web.listen-address", ":9100", "Address on which to expose metrics and web interface.") 39 listenAddress = flag.String("web.listen-address", ":9100", "Address on which to expose metrics and web interface.")
40 metricsPath = flag.String("web.telemetry-path", "/metrics", "Path under which to expose metrics.") 40 metricsPath = flag.String("web.telemetry-path", "/metrics", "Path under which to expose metrics.")
41 enabledCollectors = flag.String("collectors.enabled", 41 enabledCollectors = flag.String("collectors.enabled",
42 filterAvailableCollectors("conntrack,diskstats,filefd,filesystem,loadavg,mdadm,meminfo,netdev,netstat,sockstat,stat,textfile,time,uname,version,vmstat"), 42 filterAvailableCollectors("conntrack,diskstats,entropy,filefd,filesystem,loadavg,mdadm,meminfo,netdev,netstat,sockstat,stat,textfile,time,uname,version,vmstat"),
43 "Comma-separated list of collectors to use.") 43 "Comma-separated list of collectors to use.")
44 printCollectors = flag.Bool("collectors.print", false, "If true, print available collectors and exit.") 44 printCollectors = flag.Bool("collectors.print", false, "If true, print available collectors and exit.")
45 45