From: BarbUk Date: Thu, 20 Dec 2018 09:22:59 +0000 (+0400) Subject: Fix ITL CheckCommand disk X-Git-Tag: v2.11.0-rc1~266^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=refs%2Fpull%2F6850%2Fhead;p=icinga2 Fix ITL CheckCommand disk Add -N/--include-type option, available since release 1.5. --- diff --git a/doc/10-icinga-template-library.md b/doc/10-icinga-template-library.md index 3ff76f7f4..05f94654b 100644 --- a/doc/10-icinga-template-library.md +++ b/doc/10-icinga-template-library.md @@ -347,6 +347,7 @@ disk\_ignore\_ereg\_path | **Optional.** Regular expression to ignore selected disk\_timeout | **Optional.** Seconds before connection times out (default: 10). disk\_units | **Optional.** Choose bytes, kB, MB, GB, TB (default: MB). 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\_include\_type | **Optional.** Check only filesystems of indicated type. Multiple regular expression strings must be defined as array. ### disk_smb diff --git a/itl/command-plugins.conf b/itl/command-plugins.conf index 9960d10a7..e5b365539 100644 --- a/itl/command-plugins.conf +++ b/itl/command-plugins.conf @@ -1475,6 +1475,11 @@ object CheckCommand "disk" { description = "Ignore all filesystems of indicated type (may be repeated)" repeat_key = true } + "-N" = { + value = "$disk_include_type$" + description = "Check only filesystems of indicated type (may be repeated)" + repeat_key = true + } } vars.disk_wfree = "20%"