quorum/metrics/disk_nop.go

11 lines
216 B
Go
Raw Normal View History

// +build !linux
package metrics
import "errors"
// ReadDiskStats retrieves the disk IO stats belonging to the current process.
func ReadDiskStats(stats *DiskStats) error {
return errors.New("Not implemented")
}