mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-25 06:16:26 +01:00
deadfef4c9
* Update vendor github.com/coreos/go-systemd/dbus@v15 * Update vendor github.com/ema/qdisc * Update vendor github.com/godbus/dbus * Update vendor github.com/golang/protobuf/proto * Update vendor github.com/lufia/iostat * Update vendor github.com/matttproud/golang_protobuf_extensions/pbutil@v1.0.0 * Update vendor github.com/prometheus/client_golang/... * Update vendor github.com/prometheus/common/... * Update vendor github.com/prometheus/procfs/... * Update vendor github.com/sirupsen/logrus@v1.0.3 Adds vendor golang.org/x/crypto * Update vendor golang.org/x/net/... * Update vendor golang.org/x/sys/... * Update end to end output.
67 lines
1.7 KiB
Go
67 lines
1.7 KiB
Go
// +build darwin
|
|
|
|
package iostat
|
|
|
|
// #cgo LDFLAGS: -framework CoreFoundation -framework IOKit
|
|
// #include <stdint.h>
|
|
// #include <CoreFoundation/CoreFoundation.h>
|
|
// #include "iostat_darwin.h"
|
|
import "C"
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
// ReadDriveStats returns statictics of each of the drives.
|
|
func ReadDriveStats() ([]*DriveStats, error) {
|
|
var buf [C.NDRIVE]C.DriveStats
|
|
n, err := C.readdrivestat(&buf[0], C.int(len(buf)))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
stats := make([]*DriveStats, n)
|
|
for i := 0; i < int(n); i++ {
|
|
stats[i] = &DriveStats{
|
|
Name: C.GoString(&buf[i].name[0]),
|
|
Size: int64(buf[i].size),
|
|
BlockSize: int64(buf[i].blocksize),
|
|
BytesRead: int64(buf[i].read),
|
|
BytesWritten: int64(buf[i].written),
|
|
NumRead: int64(buf[i].nread),
|
|
NumWrite: int64(buf[i].nwrite),
|
|
TotalReadTime: time.Duration(buf[i].readtime),
|
|
TotalWriteTime: time.Duration(buf[i].writetime),
|
|
ReadLatency: time.Duration(buf[i].readlat),
|
|
WriteLatency: time.Duration(buf[i].writelat),
|
|
}
|
|
}
|
|
return stats, nil
|
|
}
|
|
|
|
// ReadCPUStats returns statistics of CPU usage.
|
|
func ReadCPUStats() (*CPUStats, error) {
|
|
var cpu C.CPUStats
|
|
_, err := C.readcpustat(&cpu)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &CPUStats{
|
|
User: uint64(cpu.user),
|
|
Nice: uint64(cpu.nice),
|
|
Sys: uint64(cpu.sys),
|
|
Idle: uint64(cpu.idle),
|
|
}, nil
|
|
}
|
|
|
|
// ReadLoadAvg returns load averages over periods of time.
|
|
func ReadLoadAvg() (*LoadAvg, error) {
|
|
var load [3]C.double
|
|
if _, err := C.getloadavg(&load[0], C.int(len(load))); err != nil {
|
|
return nil, err
|
|
}
|
|
return &LoadAvg{
|
|
Load1: float64(load[0]),
|
|
Load5: float64(load[1]),
|
|
Load15: float64(load[2]),
|
|
}, nil
|
|
}
|