mirror of https://github.com/Icinga/icinga2.git
ITL: check_disk: ignore more fuse* filesystems
not to run into permission denials. Also, ignore fuse.* for the case check_disk already supports it: https://github.com/monitoring-plugins/monitoring-plugins/pull/1904
This commit is contained in:
parent
76b460c8ba
commit
d86e2556b4
|
@ -425,7 +425,7 @@ disk\_ignore\_eregi\_path | **Optional.** Regular expression to ignore selected
|
|||
disk\_ignore\_ereg\_path | **Optional.** Regular expression to ignore selected path or partition. Multiple regular expression strings must be defined as array.
|
||||
disk\_timeout | **Optional.** Seconds before connection times out (default: 10).
|
||||
disk\_units | **Optional.** Choose bytes, kB, MB, GB, TB.
|
||||
disk\_exclude\_type | **Optional.** Ignore all filesystems of indicated type. Multiple regular expression strings must be defined as array. Defaults to "none", "tmpfs", "sysfs", "proc", "configfs", "devtmpfs", "devfs", "mtmfs", "tracefs", "cgroup", "fuse.gvfsd-fuse", "fuse.gvfs-fuse-daemon", "fdescfs", "overlay", "nsfs", "squashfs".
|
||||
disk\_exclude\_type | **Optional.** Ignore all filesystems of indicated type. Multiple regular expression strings must be defined as array. Defaults to "none", "tmpfs", "sysfs", "proc", "configfs", "devtmpfs", "devfs", "mtmfs", "tracefs", "cgroup", "fuse.\*" (only Monitoring Plugins support this so far), "fuse.gvfsd-fuse", "fuse.gvfs-fuse-daemon", "fuse.sshfs", "fdescfs", "overlay", "nsfs", "squashfs".
|
||||
disk\_include\_type | **Optional.** Check only filesystems of indicated type. Multiple regular expression strings must be defined as array.
|
||||
disk\_inode\_perfdata | **Optional.** Display inode usage in perfdata
|
||||
|
||||
|
|
|
@ -1491,9 +1491,11 @@ object CheckCommand "disk" {
|
|||
"mtmfs",
|
||||
"tracefs",
|
||||
"cgroup",
|
||||
"fuse.*", // only Monitoring Plugins support this so far
|
||||
"fuse.gvfsd-fuse",
|
||||
"fuse.gvfs-fuse-daemon",
|
||||
"fuse.portal",
|
||||
"fuse.sshfs",
|
||||
"fdescfs",
|
||||
"overlay",
|
||||
"nsfs",
|
||||
|
|
Loading…
Reference in New Issue