2015-09-26 15:36:40 +00:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2015-05-12 11:06:41 +00:00
|
|
|
// +build !nofilesystem
|
2014-06-05 19:44:44 +00:00
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"syscall"
|
|
|
|
|
2015-10-30 20:20:06 +00:00
|
|
|
"github.com/prometheus/common/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
|
|
|
)
|
|
|
|
|
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-10-18 18:47:45 +00:00
|
|
|
log.Debugf("Statfs on %s returned %s",
|
2015-09-15 12:17:15 +00:00
|
|
|
mpd.mountPoint, err)
|
2015-10-18 18:47:45 +00:00
|
|
|
continue
|
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
|
|
|
}
|