aboutsummaryrefslogtreecommitdiff
path: root/node_exporter.go
diff options
context:
space:
mode:
authorJonas Große Sundrup <cherti@letopolis.de>2015-09-07 15:49:30 +0200
committerJonas Große Sundrup <cherti@letopolis.de>2015-09-11 18:36:39 +0200
commit9f2aa24e12bb95cba49c903d82740d6299b5ce35 (patch)
tree5f9498df6c0d317b5d35536326f8345c419f22f6 /node_exporter.go
parentd8c99d8728eb5e921c0648b6621bca948a4ed0e0 (diff)
downloadprometheus_node_collector-9f2aa24e12bb95cba49c903d82740d6299b5ce35.tar.bz2
prometheus_node_collector-9f2aa24e12bb95cba49c903d82740d6299b5ce35.tar.xz
prometheus_node_collector-9f2aa24e12bb95cba49c903d82740d6299b5ce35.zip
Add collector for metrics of linux software raids
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 872e502..5e3d834 100644
--- a/node_exporter.go
+++ b/node_exporter.go
@@ -28,7 +28,7 @@ var (
28 memProfile = flag.String("debug.memprofile-file", "", "Write memory profile to this file upon receipt of SIGUSR1.") 28 memProfile = flag.String("debug.memprofile-file", "", "Write memory profile to this file upon receipt of SIGUSR1.")
29 listenAddress = flag.String("web.listen-address", ":9100", "Address on which to expose metrics and web interface.") 29 listenAddress = flag.String("web.listen-address", ":9100", "Address on which to expose metrics and web interface.")
30 metricsPath = flag.String("web.telemetry-path", "/metrics", "Path under which to expose metrics.") 30 metricsPath = flag.String("web.telemetry-path", "/metrics", "Path under which to expose metrics.")
31 enabledCollectors = flag.String("collectors.enabled", "diskstats,filefd,filesystem,loadavg,meminfo,netdev,netstat,sockstat,stat,textfile,time,uname", "Comma-separated list of collectors to use.") 31 enabledCollectors = flag.String("collectors.enabled", "diskstats,filefd,filesystem,loadavg,mdadm,meminfo,netdev,netstat,sockstat,stat,textfile,time,uname", "Comma-separated list of collectors to use.")
32 printCollectors = flag.Bool("collectors.print", false, "If true, print available collectors and exit.") 32 printCollectors = flag.Bool("collectors.print", false, "If true, print available collectors and exit.")
33 authUser = flag.String("auth.user", "", "Username for basic auth.") 33 authUser = flag.String("auth.user", "", "Username for basic auth.")
34 authPass = flag.String("auth.pass", "", "Password for basic auth.") 34 authPass = flag.String("auth.pass", "", "Password for basic auth.")