Add support for using globs in devices list of diskio input plugin (#3687)

This commit is contained in:
Daniel Nelson
2018-01-17 15:12:05 -08:00
committed by GitHub
parent c3c954441e
commit 7e597c8992
10 changed files with 497 additions and 359 deletions

View File

@@ -0,0 +1,9 @@
// +build !linux
package system
type diskInfoCache struct{}
func (s *DiskIO) diskInfo(devName string) (map[string]string, error) {
return nil, nil
}