Merge pull request #374 from prometheus/fish-add-filesystem-errors

Add node_filesystem_device_errors_total metric
This commit is contained in:
Johannes 'fish' Ziemke 2016-12-26 11:51:14 +01:00 committed by GitHub
commit d506b2266c
2 changed files with 10 additions and 1 deletions

View file

@ -52,9 +52,11 @@ func (c *filesystemCollector) GetStats() (stats []filesystemStats, err error) {
log.Debugf("Ignoring fs type: %s", mpd.fsType)
continue
}
labelValues := []string{mpd.device, mpd.mountPoint, mpd.fsType}
buf := new(syscall.Statfs_t)
err := syscall.Statfs(mpd.mountPoint, buf)
if err != nil {
c.devErrors.WithLabelValues(labelValues...).Inc()
log.Debugf("Statfs on %s returned %s",
mpd.mountPoint, err)
continue
@ -65,7 +67,6 @@ func (c *filesystemCollector) GetStats() (stats []filesystemStats, err error) {
ro = 1
}
labelValues := []string{mpd.device, mpd.mountPoint, mpd.fsType}
stats = append(stats, filesystemStats{
labelValues: labelValues,
size: float64(buf.Blocks) * float64(buf.Bsize),