Always ignore autofs filesystems in disk input (#3440)

This commit is contained in:
Daniel Nelson
2017-11-07 11:45:09 -08:00
committed by GitHub
parent 2c2dc97702
commit b81bea658f

View File

@@ -85,6 +85,11 @@ func (s *systemPS) DiskUsage(
fstypeExcludeSet[filter] = true
}
// Autofs mounts indicate a potential mount, the partition will also be
// listed with the actual filesystem when mounted. Ignore the autofs
// partition to avoid triggering a mount.
fstypeExcludeSet["autofs"] = true
var usage []*disk.UsageStat
var partitions []*disk.PartitionStat