Merge pull request #143 from lyda/filesystem-81

Make filesystem collector more robust.
This commit is contained in:
Fabian Reinartz 2015-10-20 22:21:20 +02:00
commit 2516a5b3c2

View file

@ -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}