11 lines
216 B
Go
11 lines
216 B
Go
// +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")
|
|
}
|