Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[+] Added zabbix_server_startlldprocessors var for ZBX Server #361

Merged
merged 2 commits into from
Apr 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions roles/zabbix_server/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ zabbix_server_historystoragedateindex: 0
zabbix_server_exportdir:
zabbix_server_exportfilesize: 1G
zabbix_server_startpollers: 5
zabbix_server_startlldprocessors: 2
zabbix_server_startipmipollers: 0
zabbix_server_startpollersunreachable: 1
zabbix_server_starttrappers: 5
Expand Down
11 changes: 10 additions & 1 deletion roles/zabbix_server/templates/zabbix_server.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,15 @@ StartPollers={{ zabbix_server_startpollers }}
#
StartIPMIPollers={{ zabbix_server_startipmipollers }}

{% if zabbix_version is version('4.2', '>=') %}
### option: StartLLDProcessors
# Number of pre-forked instances of low-level discovery (LLD) workers.
# The LLD manager process is automatically started when an LLD worker is started.
# This parameter is supported since Zabbix 4.2.0.
#
StartLLDProcessors={{ zabbix_server_startlldprocessors }}
{% endif %}

{% if zabbix_version is version('4.2', '>=') %}
### Option: StartPreprocessors
# Number of pre-forked instances of preprocessing workers.
Expand Down Expand Up @@ -660,4 +669,4 @@ DBTLSCipher={{ zabbix_server_dbtlscipher }}
# DBTLSCipher13=
{% if zabbix_server_dbtlscipher13 is defined and zabbix_server_dbtlscipher13 is not none %}
DBTLSCipher13={{ zabbix_server_dbtlscipher13 }}
{% endif %}
{% endif %}