mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-24 03:06:35 +01:00
13 lines
207 B
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")
|
||
|
}
|