Exclude only subdirectories of /var/lib/docker (#1003)

It is quite common to put /var/lib/docker itself on a separate partition
and that should be monitored as well.

Signed-off-by: Johannes Wienke <languitar@semipol.de>
This commit is contained in:
Johannes Wienke 2018-07-23 15:43:42 +02:00 committed by Johannes 'fish' Ziemke
parent ca2fa4684b
commit 5c780d132c
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ import (
)
const (
defIgnoredMountPoints = "^/(dev|proc|sys|var/lib/docker)($|/)"
defIgnoredMountPoints = "^/(dev|proc|sys|var/lib/docker/.+)($|/)"
defIgnoredFSTypes = "^(autofs|binfmt_misc|cgroup|configfs|debugfs|devpts|devtmpfs|fusectl|hugetlbfs|mqueue|overlay|proc|procfs|pstore|rpc_pipefs|securityfs|sysfs|tracefs)$"
readOnly = 0x1 // ST_RDONLY
mountTimeout = 30 * time.Second