]> granicus.if.org Git - icinga2/commitdiff
Fix ITL CheckCommand disk 6850/head
authorBarbUk <julien.virey@gmail.com>
Thu, 20 Dec 2018 09:22:59 +0000 (13:22 +0400)
committerBarbUk <julien.virey@gmail.com>
Thu, 20 Dec 2018 09:22:59 +0000 (13:22 +0400)
Add -N/--include-type option, available since release 1.5.

doc/10-icinga-template-library.md
itl/command-plugins.conf

index 3ff76f7f40fb92a554b11bc133f25614d95d0e03..05f94654b73ecba8edd5d21a88dd9227d1cf1695 100644 (file)
@@ -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 <a id="plugin-check-command-disk-smb"></a>
 
index 9960d10a78d6a0b23fc2974701519e50322306a6..e5b365539b5eeafd3c499707d625859b9a73b342 100644 (file)
@@ -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%"