node_exporter/vendor/github.com/lufia/iostat/iostat_linux.go

13 lines
207 B
Go

// +build !darwin
package iostat
import (
"errors"
)
// ReadDriveStats returns statictics of each of the drives.
func ReadDriveStats() ([]*DriveStats, error) {
return nil, errors.New("not implement")
}