2015-05-12 11:06:41 +00:00
|
|
|
// +build !nofilesystem
|
2014-06-05 19:44:44 +00:00
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"syscall"
|
|
|
|
|
2015-05-28 19:21:44 +00:00
|
|
|
"github.com/prometheus/log"
|
2014-06-05 19:44:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-09-16 13:34:34 +00:00
|
|
|
defIgnoredMountPoints = "^/(sys|proc|dev)($|/)"
|
2014-06-05 19:44:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-09-16 13:34:34 +00:00
|
|
|
filesystemLabelNames = []string{"device", "mountpoint", "fstype"}
|
2014-06-05 19:44:44 +00:00
|
|
|
)
|
|
|
|
|
2015-07-02 23:20:49 +00:00
|
|
|
type filesystemDetails struct {
|
|
|
|
device string
|
|
|
|
mountPoint string
|
|
|
|
fsType string
|
|
|
|
}
|
|
|
|
|
2014-06-05 19:44:44 +00:00
|
|
|
// Expose filesystem fullness.
|
2015-09-16 13:34:34 +00:00
|
|
|
func (c *filesystemCollector) GetStats() (stats []filesystemStats, err error) {
|
2015-07-02 23:20:49 +00:00
|
|
|
mpds, err := mountPointDetails()
|
2014-06-05 19:44:44 +00:00
|
|
|
if err != nil {
|
2015-09-16 13:34:34 +00:00
|
|
|
return nil, err
|
2014-06-05 19:44:44 +00:00
|
|
|
}
|
2015-09-16 13:34:34 +00:00
|
|
|
stats = []filesystemStats{}
|
2015-07-02 23:20:49 +00:00
|
|
|
for _, mpd := range mpds {
|
|
|
|
if c.ignoredMountPointsPattern.MatchString(mpd.mountPoint) {
|
|
|
|
log.Debugf("Ignoring mount point: %s", mpd.mountPoint)
|
2014-06-05 19:44:44 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
buf := new(syscall.Statfs_t)
|
2015-07-02 23:20:49 +00:00
|
|
|
err := syscall.Statfs(mpd.mountPoint, buf)
|
2014-06-05 19:44:44 +00:00
|
|
|
if err != nil {
|
2015-09-16 13:34:34 +00:00
|
|
|
return nil, fmt.Errorf("Statfs on %s returned %s",
|
2015-09-15 12:17:15 +00:00
|
|
|
mpd.mountPoint, err)
|
2014-06-05 19:44:44 +00:00
|
|
|
}
|
2015-07-02 23:20:49 +00:00
|
|
|
|
2015-09-16 13:34:34 +00:00
|
|
|
labelValues := []string{mpd.device, mpd.mountPoint, mpd.fsType}
|
|
|
|
stats = append(stats, filesystemStats{
|
|
|
|
labelValues: labelValues,
|
|
|
|
size: float64(buf.Blocks) * float64(buf.Bsize),
|
|
|
|
free: float64(buf.Bfree) * float64(buf.Bsize),
|
|
|
|
avail: float64(buf.Bavail) * float64(buf.Bsize),
|
|
|
|
files: float64(buf.Files),
|
|
|
|
filesFree: float64(buf.Ffree),
|
|
|
|
})
|
2014-06-05 19:44:44 +00:00
|
|
|
}
|
2015-09-16 13:34:34 +00:00
|
|
|
return stats, nil
|
2014-06-05 19:44:44 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 23:20:49 +00:00
|
|
|
func mountPointDetails() ([]filesystemDetails, error) {
|
2015-09-26 12:53:46 +00:00
|
|
|
file, err := os.Open(procFilePath("mounts"))
|
2014-06-05 19:44:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
2015-07-02 23:20:49 +00:00
|
|
|
filesystems := []filesystemDetails{}
|
|
|
|
|
2014-06-05 19:44:44 +00:00
|
|
|
scanner := bufio.NewScanner(file)
|
|
|
|
for scanner.Scan() {
|
|
|
|
parts := strings.Fields(scanner.Text())
|
2015-07-02 23:20:49 +00:00
|
|
|
filesystems = append(filesystems, filesystemDetails{parts[0], parts[1], parts[2]})
|
2014-06-05 19:44:44 +00:00
|
|
|
}
|
2015-07-02 23:20:49 +00:00
|
|
|
return filesystems, nil
|
2014-06-05 19:44:44 +00:00
|
|
|
}
|