telegraf/plugins/inputs/system/diskio_other.go

10 lines
153 B
Go

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