Add all hosts var for the plugin "list" whitelist
This commit is contained in:
parent
9bde39da78
commit
2564ddb065
|
@ -6,6 +6,7 @@
|
|||
* Add possibility to install `apt` plugin dependencies.
|
||||
* Ensure to apply the config only if wanted.
|
||||
* Some yamllint fix.
|
||||
* Add a all hosts variable for the plugin "list" whitelist.
|
||||
|
||||
## v1.1
|
||||
|
||||
|
|
|
@ -40,6 +40,7 @@ Manage Xymon (client) installation and configuration.
|
|||
* **xymon_plug_libs_path** : Configuration file for the `libs` plugin [default : `/etc/xymon/clientlaunch.d/libs.cfg`].
|
||||
* **xymon_plug_libs_tpl** : Template used to generate the previous config file [default : `etc/xymon/clientlaunch.d/libs.cfg.j2`].
|
||||
* **xymon_plug_libs_default_whitelist** : Default whitelist of processes that should not be monitored with `libs` plugin.
|
||||
* **xymon_plug_libs_whitelist** : All hosts whitelist of processes that should not be monitored with `libs` plugin.
|
||||
* **xymon_plug_libs_group_whitelist** : Group whitelist of processes that should not be monitored with `libs` plugin.
|
||||
* **xymon_plug_libs_host_whitelist** : Host whitelist of processes that should not be monitored with `libs` plugin.
|
||||
|
||||
|
|
|
@ -76,6 +76,7 @@ xymon_plug_libs_default_whitelist:
|
|||
- '.*'
|
||||
/sbin/multipathd:
|
||||
- '.*'
|
||||
xymon_plug_libs_whitelist: {}
|
||||
xymon_plug_libs_group_whitelist: {}
|
||||
xymon_plug_libs_host_whitelist: {}
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# {{ ansible_managed }}
|
||||
{% set inputmerged = xymon_plug_libs_default_whitelist.copy() %}
|
||||
{% set _ = inputmerged.update(xymon_plug_libs_whitelist) %}
|
||||
{% set _ = inputmerged.update(xymon_plug_libs_group_whitelist) %}
|
||||
{% set _ = inputmerged.update(xymon_plug_libs_host_whitelist) %}
|
||||
---
|
||||
|
|
Loading…
Reference in New Issue