@@ -26,18 +26,18 @@ instances:
2626 # - <KEY_1>:<VALUE_1>
2727 # - <KEY_2>:<VALUE_2>
2828
29- ## @param file_system_whitelist - list of strings - optional
29+ ## @param file_system_include - list of strings - optional
3030 ## Instruct the check to only collect from matching file systems.
3131 ##
3232 ## Character casing is ignored. For convenience, the regular expressions
3333 ## start matching from the beginning and therefore to match anywhere you
3434 ## must prepend `.*`. For exact matches append `$`.
3535 #
36- # file_system_whitelist :
36+ # file_system_include :
3737 # - ext[34]$
3838 # - ntfs$
3939
40- ## @param file_system_blacklist - list of strings - optional
40+ ## @param file_system_exclude - list of strings - optional
4141 ## Instruct the check to not collect from matching file systems.
4242 ##
4343 ## Character casing is ignored. For convenience, the regular expressions
@@ -47,56 +47,56 @@ instances:
4747 ## Devices from pseudo or memory-based file systems can be excluded by disabling the
4848 ## `include_all_devices` option.
4949 ##
50- ## When conflicts arise, this will override `file_system_whitelist `.
50+ ## When conflicts arise, this will override `file_system_include `.
5151 #
52- # file_system_blacklist :
52+ # file_system_exclude :
5353 # - tmpfs$
5454 # - rootfs$
5555 # - autofs$
5656
57- ## @param device_whitelist - list of strings - optional
57+ ## @param device_include - list of strings - optional
5858 ## Instruct the check to only collect from matching devices.
5959 ##
6060 ## Character casing is ignored on Windows. For convenience, the regular
6161 ## expressions start matching from the beginning and therefore to match
6262 ## anywhere you must prepend `.*`. For exact matches append `$`.
6363 #
64- # device_whitelist :
64+ # device_include :
6565 # - /dev/sda[1-3]
6666 # - 'C:'
6767
68- ## @param device_blacklist - list of strings - optional
68+ ## @param device_exclude - list of strings - optional
6969 ## Instruct the check to not collect from matching devices.
7070 ##
7171 ## Character casing is ignored on Windows. For convenience, the regular
7272 ## expressions start matching from the beginning and therefore to match
7373 ## anywhere you must prepend `.*`. For exact matches append `$`.
7474 ##
75- ## When conflicts arise, this will override `device_whitelist `.
75+ ## When conflicts arise, this will override `device_include `.
7676 #
77- # device_blacklist :
77+ # device_exclude :
7878 # - /dev/sde
7979 # - '[FJ]:'
8080
81- ## @param mount_point_whitelist - list of strings - optional
81+ ## @param mount_point_include - list of strings - optional
8282 ## Instruct the check to only collect from matching mount points.
8383 ##
8484 ## Character casing is ignored on Windows. For convenience, the regular
8585 ## expressions start matching from the beginning and therefore to match
8686 ## anywhere you must prepend `.*`. For exact matches append `$`.
8787 #
88- # mount_point_whitelist :
88+ # mount_point_include :
8989 # - /dev/sda[1-3]
9090 # - 'C:'
9191
92- ## @param mount_point_blacklist - list of strings - optional
92+ ## @param mount_point_exclude - list of strings - optional
9393 ## Instruct the check to not collect from matching mount points.
9494 ##
9595 ## Character casing is ignored on Windows. For convenience, the regular
9696 ## expressions start matching from the beginning and therefore to match
9797 ## anywhere you must prepend `.*`. For exact matches append `$`.
9898 #
99- # mount_point_blacklist :
99+ # mount_point_exclude :
100100 # - /proc/sys/fs/binfmt_misc
101101 # - /dev/sde
102102 # - '[FJ]:'
0 commit comments