2014-02-07 16:09:39 +00:00
|
|
|
# node_exporter
|
|
|
|
|
|
|
|
Prometheus exporter with plugable metric collectors.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Available collectors
|
|
|
|
|
|
|
|
By default it will only include the NativeCollector.
|
|
|
|
|
2014-02-12 10:24:26 +00:00
|
|
|
To include other collectors, specify the build tags lile this:
|
|
|
|
|
|
|
|
go build -tags 'ganglia runit' node_exporter.go
|
2014-02-07 16:09:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
### NativeCollector
|
|
|
|
|
|
|
|
Provides metrics for load, seconds since last login and a list of tags
|
|
|
|
read from `node_exporter.conf`.
|
|
|
|
|
|
|
|
To disable the native collector, use build tag `nonative`.
|
|
|
|
|
|
|
|
|
2014-02-12 10:24:26 +00:00
|
|
|
### GmondCollector (tag: ganglia)
|
2014-02-07 16:09:39 +00:00
|
|
|
|
|
|
|
Talks to a local gmond and provide it's metrics.
|
|
|
|
|
|
|
|
|
2014-02-12 10:24:26 +00:00
|
|
|
### RunitCollector (tag: runit)
|
2014-02-07 16:09:39 +00:00
|
|
|
|
|
|
|
Provides metrics for each runit services like state and how long it
|
|
|
|
has been in that state.
|
2013-04-18 14:44:52 +00:00
|
|
|
|