blob: 539ab8d1a0bcfd207d3958427a4074ba72fbba88 (
plain) (
tree)
|
|
// +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")
}
|