mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
Make filesystem collector more robust.
Current behaviour throws away all stats on any Statfs error. In practice this is not useful. This turns such errors into debug log messages - though silently ignoring them seems even more valid to me.
This commit is contained in:
parent
eee6298266
commit
36291d456e
|
@ -17,7 +17,6 @@ package collector
|
|||
|
||||
import (
|
||||
"bufio"
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
"syscall"
|
||||
|
@ -54,8 +53,9 @@ func (c *filesystemCollector) GetStats() (stats []filesystemStats, err error) {
|
|||
buf := new(syscall.Statfs_t)
|
||||
err := syscall.Statfs(mpd.mountPoint, buf)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("Statfs on %s returned %s",
|
||||
log.Debugf("Statfs on %s returned %s",
|
||||
mpd.mountPoint, err)
|
||||
continue
|
||||
}
|
||||
|
||||
labelValues := []string{mpd.device, mpd.mountPoint, mpd.fsType}
|
||||
|
|
Loading…
Reference in a new issue