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 (
|
2018-02-06 16:10:59 +00:00
|
|
|
defIgnoredMountPoints = "^/(dev|proc|sys|var/lib/docker)($|/)"
|
2018-01-03 16:22:02 +00:00
|
|
|
defIgnoredFSTypes = "^(autofs|binfmt_misc|cgroup|configfs|debugfs|devpts|devtmpfs|fusectl|hugetlbfs|mqueue|proc|procfs|pstore|rpc_pipefs|securityfs|sysfs|tracefs)$"
|
2017-02-28 16:44:53 +00:00
|
|
|
readOnly = 0x1 // ST_RDONLY
|
2014-06-05 19:44:44 +00:00
|
|
|
)
|
|
|
|
|
2017-02-28 16:44:53 +00:00
|
|
|
// GetStats returns filesystem stats.
|
2017-02-28 18:47:20 +00:00
|
|
|
func (c *filesystemCollector) GetStats() ([]filesystemStats, error) {
|
2017-01-03 14:55:40 +00:00
|
|
|
mps, 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
|
|
|
}
|
2017-02-28 18:47:20 +00:00
|
|
|
stats := []filesystemStats{}
|
2017-01-03 14:55:40 +00:00
|
|
|
for _, labels := range mps {
|
|
|
|
if c.ignoredMountPointsPattern.MatchString(labels.mountPoint) {
|
|
|
|
log.Debugf("Ignoring mount point: %s", labels.mountPoint)
|
2014-06-05 19:44:44 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-01-03 14:55:40 +00:00
|
|
|
if c.ignoredFSTypesPattern.MatchString(labels.fsType) {
|
|
|
|
log.Debugf("Ignoring fs type: %s", labels.fsType)
|
2016-03-15 13:01:08 +00:00
|
|
|
continue
|
|
|
|
}
|
2017-03-23 00:48:18 +00:00
|
|
|
|
2014-06-05 19:44:44 +00:00
|
|
|
buf := new(syscall.Statfs_t)
|
2017-01-03 14:55:40 +00:00
|
|
|
err := syscall.Statfs(labels.mountPoint, buf)
|
2014-06-05 19:44:44 +00:00
|
|
|
if err != nil {
|
2017-03-23 00:48:18 +00:00
|
|
|
stats = append(stats, filesystemStats{
|
|
|
|
labels: labels,
|
|
|
|
deviceError: 1,
|
|
|
|
})
|
2018-02-07 15:16:20 +00:00
|
|
|
log.Debugf("Error on statfs() system call for %q: %s", labels.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-11-10 08:25:04 +00:00
|
|
|
var ro float64
|
2017-02-28 16:44:53 +00:00
|
|
|
if (buf.Flags & readOnly) != 0 {
|
2015-11-10 08:25:04 +00:00
|
|
|
ro = 1
|
|
|
|
}
|
|
|
|
|
2015-09-16 13:34:34 +00:00
|
|
|
stats = append(stats, filesystemStats{
|
2017-01-03 14:55:40 +00: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 13:34:34 +00:00
|
|
|
})
|
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
|
|
|
}
|
|
|
|
|
2017-01-03 14:55:40 +00:00
|
|
|
func mountPointDetails() ([]filesystemLabels, 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()
|
|
|
|
|
2017-01-03 14:55:40 +00:00
|
|
|
filesystems := []filesystemLabels{}
|
2014-06-05 19:44:44 +00:00
|
|
|
scanner := bufio.NewScanner(file)
|
|
|
|
for scanner.Scan() {
|
|
|
|
parts := strings.Fields(scanner.Text())
|
2017-03-23 00:48:18 +00:00
|
|
|
filesystems = append(filesystems, filesystemLabels{
|
|
|
|
device: parts[0],
|
|
|
|
mountPoint: parts[1],
|
|
|
|
fsType: parts[2],
|
|
|
|
})
|
2014-06-05 19:44:44 +00:00
|
|
|
}
|
2017-01-03 14:55:40 +00:00
|
|
|
return filesystems, scanner.Err()
|
2014-06-05 19:44:44 +00:00
|
|
|
}
|