2015-09-26 08:36:40 -07: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 04:06:41 -07:00
|
|
|
// +build !nofilesystem
|
2014-06-05 12:44:44 -07:00
|
|
|
|
|
|
|
package collector
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"syscall"
|
|
|
|
|
2015-10-30 13:20:06 -07:00
|
|
|
"github.com/prometheus/common/log"
|
2014-06-05 12:44:44 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2015-09-16 06:34:34 -07:00
|
|
|
defIgnoredMountPoints = "^/(sys|proc|dev)($|/)"
|
2016-12-24 03:31:21 -08:00
|
|
|
defIgnoredFSTypes = "^(sys|proc|auto)fs$"
|
2015-11-10 00:25:04 -08:00
|
|
|
ST_RDONLY = 0x1
|
2014-06-05 12:44:44 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// Expose filesystem fullness.
|
2015-09-16 06:34:34 -07:00
|
|
|
func (c *filesystemCollector) GetStats() (stats []filesystemStats, err error) {
|
2017-01-03 06:55:40 -08:00
|
|
|
mps, err := mountPointDetails()
|
2014-06-05 12:44:44 -07:00
|
|
|
if err != nil {
|
2015-09-16 06:34:34 -07:00
|
|
|
return nil, err
|
2014-06-05 12:44:44 -07:00
|
|
|
}
|
2015-09-16 06:34:34 -07:00
|
|
|
stats = []filesystemStats{}
|
2017-01-03 06:55:40 -08:00
|
|
|
for _, labels := range mps {
|
|
|
|
if c.ignoredMountPointsPattern.MatchString(labels.mountPoint) {
|
|
|
|
log.Debugf("Ignoring mount point: %s", labels.mountPoint)
|
2014-06-05 12:44:44 -07:00
|
|
|
continue
|
|
|
|
}
|
2017-01-03 06:55:40 -08:00
|
|
|
if c.ignoredFSTypesPattern.MatchString(labels.fsType) {
|
|
|
|
log.Debugf("Ignoring fs type: %s", labels.fsType)
|
2016-03-15 06:01:08 -07:00
|
|
|
continue
|
|
|
|
}
|
2017-01-03 06:55:40 -08:00
|
|
|
labelValues := []string{labels.device, labels.mountPoint, labels.fsType}
|
2014-06-05 12:44:44 -07:00
|
|
|
buf := new(syscall.Statfs_t)
|
2017-01-03 06:55:40 -08:00
|
|
|
err := syscall.Statfs(labels.mountPoint, buf)
|
2014-06-05 12:44:44 -07:00
|
|
|
if err != nil {
|
2016-12-19 02:48:32 -08:00
|
|
|
c.devErrors.WithLabelValues(labelValues...).Inc()
|
2015-10-18 11:47:45 -07:00
|
|
|
log.Debugf("Statfs on %s returned %s",
|
2017-01-03 06:55:40 -08:00
|
|
|
labels.mountPoint, err)
|
2015-10-18 11:47:45 -07:00
|
|
|
continue
|
2014-06-05 12:44:44 -07:00
|
|
|
}
|
2015-07-02 16:20:49 -07:00
|
|
|
|
2015-11-10 00:25:04 -08:00
|
|
|
var ro float64
|
2016-01-21 13:20:32 -08:00
|
|
|
if buf.Flags&ST_RDONLY != 0 {
|
2015-11-10 00:25:04 -08:00
|
|
|
ro = 1
|
|
|
|
}
|
|
|
|
|
2015-09-16 06:34:34 -07:00
|
|
|
stats = append(stats, filesystemStats{
|
2017-01-03 06:55:40 -08:00
|
|
|
labels: labels,
|
|
|
|
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),
|
|
|
|
ro: ro,
|
2015-09-16 06:34:34 -07:00
|
|
|
})
|
2014-06-05 12:44:44 -07:00
|
|
|
}
|
2015-09-16 06:34:34 -07:00
|
|
|
return stats, nil
|
2014-06-05 12:44:44 -07:00
|
|
|
}
|
|
|
|
|
2017-01-03 06:55:40 -08:00
|
|
|
func mountPointDetails() ([]filesystemLabels, error) {
|
2015-09-26 05:53:46 -07:00
|
|
|
file, err := os.Open(procFilePath("mounts"))
|
2014-06-05 12:44:44 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
2017-01-03 06:55:40 -08:00
|
|
|
filesystems := []filesystemLabels{}
|
2015-07-02 16:20:49 -07:00
|
|
|
|
2014-06-05 12:44:44 -07:00
|
|
|
scanner := bufio.NewScanner(file)
|
|
|
|
for scanner.Scan() {
|
|
|
|
parts := strings.Fields(scanner.Text())
|
2017-01-03 06:55:40 -08:00
|
|
|
filesystems = append(filesystems, filesystemLabels{parts[0], parts[1], parts[2]})
|
2014-06-05 12:44:44 -07:00
|
|
|
}
|
2017-01-03 06:55:40 -08:00
|
|
|
return filesystems, scanner.Err()
|
2014-06-05 12:44:44 -07:00
|
|
|
}
|