Browse Source

Ignore floppy disk devices, due to it being 2015

pull/45/head
Stephen Shirley 10 years ago
parent
commit
72404d9ed1
  1. 2
      collector/diskstats.go

2
collector/diskstats.go

@ -22,7 +22,7 @@ const (
)
var (
ignoredDevices = flag.String("diskstatsIgnoredDevices", "^(ram|loop|(h|s|v|xv)d[a-z])\\d+$", "Regexp of devices to ignore for diskstats.")
ignoredDevices = flag.String("diskstatsIgnoredDevices", "^(ram|loop|(fd|h|s|v|xv)d[a-z])\\d+$", "Regexp of devices to ignore for diskstats.")
)
type diskstatsCollector struct {

Loading…
Cancel
Save