mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-05 18:22:19 +00:00
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")
|
||
|
}
|