telegraf/plugins/inputs/system/disk_other.go

10 lines
158 B
Go
Raw Normal View History

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