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"
|
2018-10-30 21:12:42 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2014-06-05 19:44:44 +00:00
|
|
|
"os"
|
|
|
|
"strings"
|
2018-07-14 09:10:28 +00:00
|
|
|
"sync"
|
|
|
|
"time"
|
2014-06-05 19:44:44 +00:00
|
|
|
|
2019-12-31 16:19:37 +00:00
|
|
|
"github.com/go-kit/kit/log"
|
|
|
|
"github.com/go-kit/kit/log/level"
|
2019-05-10 18:04:06 +00:00
|
|
|
"golang.org/x/sys/unix"
|
2019-12-31 16:19:37 +00:00
|
|
|
"gopkg.in/alecthomas/kingpin.v2"
|
2014-06-05 19:44:44 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2018-07-23 13:43:42 +00:00
|
|
|
defIgnoredMountPoints = "^/(dev|proc|sys|var/lib/docker/.+)($|/)"
|
2019-06-18 16:47:05 +00:00
|
|
|
defIgnoredFSTypes = "^(autofs|binfmt_misc|bpf|cgroup2?|configfs|debugfs|devpts|devtmpfs|fusectl|hugetlbfs|iso9660|mqueue|nsfs|overlay|proc|procfs|pstore|rpc_pipefs|securityfs|selinuxfs|squashfs|sysfs|tracefs)$"
|
2014-06-05 19:44:44 +00:00
|
|
|
)
|
|
|
|
|
2019-09-13 19:13:59 +00:00
|
|
|
var mountTimeout = kingpin.Flag("collector.filesystem.mount-timeout",
|
|
|
|
"how long to wait for a mount to respond before marking it as stale").
|
|
|
|
Hidden().Default("5s").Duration()
|
2018-07-14 09:10:28 +00:00
|
|
|
var stuckMounts = make(map[string]struct{})
|
|
|
|
var stuckMountsMtx = &sync.Mutex{}
|
|
|
|
|
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) {
|
2019-12-31 16:19:37 +00:00
|
|
|
mps, err := mountPointDetails(c.logger)
|
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) {
|
2019-12-31 16:19:37 +00:00
|
|
|
level.Debug(c.logger).Log("msg", "Ignoring mount point", "mountpoint", 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) {
|
2019-12-31 16:19:37 +00:00
|
|
|
level.Debug(c.logger).Log("msg", "Ignoring fs", "type", labels.fsType)
|
2016-03-15 13:01:08 +00:00
|
|
|
continue
|
|
|
|
}
|
2018-07-14 09:10:28 +00:00
|
|
|
stuckMountsMtx.Lock()
|
|
|
|
if _, ok := stuckMounts[labels.mountPoint]; ok {
|
|
|
|
stats = append(stats, filesystemStats{
|
|
|
|
labels: labels,
|
|
|
|
deviceError: 1,
|
|
|
|
})
|
2019-12-31 16:19:37 +00:00
|
|
|
level.Debug(c.logger).Log("msg", "Mount point is in an unresponsive state", "mountpoint", labels.mountPoint)
|
2018-07-14 09:10:28 +00:00
|
|
|
stuckMountsMtx.Unlock()
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
stuckMountsMtx.Unlock()
|
|
|
|
|
|
|
|
// The success channel is used do tell the "watcher" that the stat
|
|
|
|
// finished successfully. The channel is closed on success.
|
|
|
|
success := make(chan struct{})
|
2019-12-31 16:19:37 +00:00
|
|
|
go stuckMountWatcher(labels.mountPoint, success, c.logger)
|
2017-03-23 00:48:18 +00:00
|
|
|
|
2019-05-10 18:04:06 +00:00
|
|
|
buf := new(unix.Statfs_t)
|
|
|
|
err = unix.Statfs(rootfsFilePath(labels.mountPoint), buf)
|
2018-07-14 09:10:28 +00:00
|
|
|
stuckMountsMtx.Lock()
|
|
|
|
close(success)
|
|
|
|
// If the mount has been marked as stuck, unmark it and log it's recovery.
|
|
|
|
if _, ok := stuckMounts[labels.mountPoint]; ok {
|
2019-12-31 16:19:37 +00:00
|
|
|
level.Debug(c.logger).Log("msg", "Mount point has recovered, monitoring will resume", "mountpoint", labels.mountPoint)
|
2018-07-14 09:10:28 +00:00
|
|
|
delete(stuckMounts, labels.mountPoint)
|
|
|
|
}
|
|
|
|
stuckMountsMtx.Unlock()
|
|
|
|
|
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,
|
|
|
|
})
|
2019-12-31 16:19:37 +00:00
|
|
|
|
|
|
|
level.Debug(c.logger).Log("msg", "Error on statfs() system call", "rootfs", rootfsFilePath(labels.mountPoint), "err", 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
|
2018-07-16 13:56:27 +00:00
|
|
|
for _, option := range strings.Split(labels.options, ",") {
|
|
|
|
if option == "ro" {
|
|
|
|
ro = 1
|
|
|
|
break
|
|
|
|
}
|
2015-11-10 08:25:04 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-07-14 09:10:28 +00:00
|
|
|
// stuckMountWatcher listens on the given success channel and if the channel closes
|
|
|
|
// then the watcher does nothing. If instead the timeout is reached, the
|
|
|
|
// mount point that is being watched is marked as stuck.
|
2019-12-31 16:19:37 +00:00
|
|
|
func stuckMountWatcher(mountPoint string, success chan struct{}, logger log.Logger) {
|
2018-07-14 09:10:28 +00:00
|
|
|
select {
|
|
|
|
case <-success:
|
|
|
|
// Success
|
2019-09-13 19:13:59 +00:00
|
|
|
case <-time.After(*mountTimeout):
|
2018-07-14 09:10:28 +00:00
|
|
|
// Timed out, mark mount as stuck
|
|
|
|
stuckMountsMtx.Lock()
|
|
|
|
select {
|
|
|
|
case <-success:
|
|
|
|
// Success came in just after the timeout was reached, don't label the mount as stuck
|
|
|
|
default:
|
2019-12-31 16:19:37 +00:00
|
|
|
level.Debug(logger).Log("msg", "Mount point timed out, it is being labeled as stuck and will not be monitored", "mountpoint", mountPoint)
|
2018-07-14 09:10:28 +00:00
|
|
|
stuckMounts[mountPoint] = struct{}{}
|
|
|
|
}
|
|
|
|
stuckMountsMtx.Unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-31 16:19:37 +00:00
|
|
|
func mountPointDetails(logger log.Logger) ([]filesystemLabels, error) {
|
2018-10-04 12:11:21 +00:00
|
|
|
file, err := os.Open(procFilePath("1/mounts"))
|
2018-11-30 13:01:55 +00:00
|
|
|
if os.IsNotExist(err) {
|
|
|
|
// Fallback to `/proc/mounts` if `/proc/1/mounts` is missing due hidepid.
|
2019-12-31 16:19:37 +00:00
|
|
|
level.Debug(logger).Log("msg", "Reading root mounts failed, falling back to system mounts", "err", err)
|
2018-11-30 13:01:55 +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()
|
|
|
|
|
2018-10-30 21:12:42 +00:00
|
|
|
return parseFilesystemLabels(file)
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseFilesystemLabels(r io.Reader) ([]filesystemLabels, error) {
|
|
|
|
var filesystems []filesystemLabels
|
|
|
|
|
|
|
|
scanner := bufio.NewScanner(r)
|
2014-06-05 19:44:44 +00:00
|
|
|
for scanner.Scan() {
|
|
|
|
parts := strings.Fields(scanner.Text())
|
2018-06-06 14:49:19 +00:00
|
|
|
|
2018-10-30 21:12:42 +00:00
|
|
|
if len(parts) < 4 {
|
|
|
|
return nil, fmt.Errorf("malformed mount point information: %q", scanner.Text())
|
|
|
|
}
|
|
|
|
|
2018-06-06 14:49:19 +00:00
|
|
|
// Ensure we handle the translation of \040 and \011
|
|
|
|
// as per fstab(5).
|
|
|
|
parts[1] = strings.Replace(parts[1], "\\040", " ", -1)
|
|
|
|
parts[1] = strings.Replace(parts[1], "\\011", "\t", -1)
|
|
|
|
|
2017-03-23 00:48:18 +00:00
|
|
|
filesystems = append(filesystems, filesystemLabels{
|
|
|
|
device: parts[0],
|
2019-07-19 14:51:17 +00:00
|
|
|
mountPoint: rootfsStripPrefix(parts[1]),
|
2017-03-23 00:48:18 +00:00
|
|
|
fsType: parts[2],
|
2018-07-16 13:56:27 +00:00
|
|
|
options: parts[3],
|
2017-03-23 00:48:18 +00:00
|
|
|
})
|
2014-06-05 19:44:44 +00:00
|
|
|
}
|
2018-10-30 21:12:42 +00:00
|
|
|
|
2017-01-03 14:55:40 +00:00
|
|
|
return filesystems, scanner.Err()
|
2014-06-05 19:44:44 +00:00
|
|
|
}
|