mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-28 23:19:46 -08:00
Add and use sysReadFile in hwmon collector (#728)
This commit is contained in:
parent
4d7aa57da0
commit
f6f9c8d6cc
|
@ -24,6 +24,7 @@ import (
|
||||||
"regexp"
|
"regexp"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
"syscall"
|
||||||
|
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
"github.com/prometheus/common/log"
|
"github.com/prometheus/common/log"
|
||||||
|
@ -61,8 +62,8 @@ func cleanMetricName(name string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func addValueFile(data map[string]map[string]string, sensor string, prop string, file string) {
|
func addValueFile(data map[string]map[string]string, sensor string, prop string, file string) {
|
||||||
raw, e := ioutil.ReadFile(file)
|
raw, err := sysReadFile(file)
|
||||||
if e != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
value := strings.Trim(string(raw), "\n")
|
value := strings.Trim(string(raw), "\n")
|
||||||
|
@ -74,6 +75,28 @@ func addValueFile(data map[string]map[string]string, sensor string, prop string,
|
||||||
data[sensor][prop] = value
|
data[sensor][prop] = value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// sysReadFile is a simplified ioutil.ReadFile that invokes syscall.Read directly.
|
||||||
|
func sysReadFile(file string) ([]byte, error) {
|
||||||
|
f, err := os.Open(file)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
defer f.Close()
|
||||||
|
|
||||||
|
// On some machines, hwmon drivers are broken and return EAGAIN. This causes
|
||||||
|
// Go's ioutil.ReadFile implementation to poll forever.
|
||||||
|
//
|
||||||
|
// Since we either want to read data or bail immediately, do the simplest
|
||||||
|
// possible read using syscall directly.
|
||||||
|
b := make([]byte, 128)
|
||||||
|
n, err := syscall.Read(int(f.Fd()), b)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return b[:n], nil
|
||||||
|
}
|
||||||
|
|
||||||
// explodeSensorFilename splits a sensor name into <type><num>_<property>.
|
// explodeSensorFilename splits a sensor name into <type><num>_<property>.
|
||||||
func explodeSensorFilename(filename string) (ok bool, sensorType string, sensorNum int, sensorProperty string) {
|
func explodeSensorFilename(filename string) (ok bool, sensorType string, sensorNum int, sensorProperty string) {
|
||||||
matches := hwmonFilenameFormat.FindStringSubmatch(filename)
|
matches := hwmonFilenameFormat.FindStringSubmatch(filename)
|
||||||
|
|
Loading…
Reference in a new issue