Enable bonding collector by default. (#872)
Signed-off-by: Brian Brazil <brian.brazil@robustperception.io>
This commit is contained in:
parent
be9d82b66e
commit
c8c144587e
|
@ -25,6 +25,7 @@ Name | Description | OS
|
|||
---------|-------------|----
|
||||
arp | Exposes ARP statistics from `/proc/net/arp`. | Linux
|
||||
bcache | Exposes bcache statistics from `/sys/fs/bcache/`. | Linux
|
||||
bonding | Exposes the number of configured and active slaves of Linux bonding interfaces. | Linux
|
||||
conntrack | Shows conntrack statistics (does nothing if no `/proc/sys/net/netfilter/` present). | Linux
|
||||
cpu | Exposes CPU statistics | Darwin, Dragonfly, FreeBSD, Linux
|
||||
diskstats | Exposes disk I/O statistics. | Darwin, Linux
|
||||
|
@ -58,7 +59,6 @@ zfs | Exposes [ZFS](http://open-zfs.org/) performance statistics. | [Linux](http
|
|||
|
||||
Name | Description | OS
|
||||
---------|-------------|----
|
||||
bonding | Exposes the number of configured and active slaves of Linux bonding interfaces. | Linux
|
||||
buddyinfo | Exposes statistics of memory fragments as reported by /proc/buddyinfo. | Linux
|
||||
devstat | Exposes device statistics | Dragonfly, FreeBSD
|
||||
drbd | Exposes Distributed Replicated Block Device statistics (to version 8.4) | Linux
|
||||
|
|
|
@ -31,7 +31,7 @@ type bondingCollector struct {
|
|||
}
|
||||
|
||||
func init() {
|
||||
registerCollector("bonding", defaultDisabled, NewBondingCollector)
|
||||
registerCollector("bonding", defaultEnabled, NewBondingCollector)
|
||||
}
|
||||
|
||||
// NewBondingCollector returns a newly allocated bondingCollector.
|
||||
|
|
Loading…
Reference in New Issue