Skip to content

Commit 88f8dba

Browse files
Merge pull request #384 from bjornfor/filesystem-ignore-autofs
Ignore autofs filesystems on linux
2 parents ad1befe + 64e637c commit 88f8dba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collector/filesystem_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626

2727
const (
2828
defIgnoredMountPoints = "^/(sys|proc|dev)($|/)"
29-
defIgnoredFSTypes = "^(sys|proc)fs$"
29+
defIgnoredFSTypes = "^(sys|proc|auto)fs$"
3030
ST_RDONLY = 0x1
3131
)
3232

0 commit comments

Comments
 (0)