blob: 539ab8d1a0bcfd207d3958427a4074ba72fbba88 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// +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")
}
|