Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/conf
diff options
context:
space:
mode:
authorDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2021-07-23 13:22:34 +0300
committerDmitrijs Goloscapovs <dmitrijs.goloscapovs@zabbix.com>2021-07-27 11:00:51 +0300
commit3131b9702a1329b2b0a37ed546fa557e37e25623 (patch)
tree5ec24a7a71cf683d792e9cc066050a2897afe40e /conf
parent0986309c47bc53ab0921b10064f999df666c6455 (diff)
...G...PS. [ZBX-7933] added configurable parameter for TCP queue maximum size
Diffstat (limited to 'conf')
-rw-r--r--conf/zabbix_agentd.conf11
-rw-r--r--conf/zabbix_agentd.win.conf11
-rw-r--r--conf/zabbix_proxy.conf10
-rw-r--r--conf/zabbix_server.conf11
4 files changed, 43 insertions, 0 deletions
diff --git a/conf/zabbix_agentd.conf b/conf/zabbix_agentd.conf
index 12afc725ed0..d1b370a18ab 100644
--- a/conf/zabbix_agentd.conf
+++ b/conf/zabbix_agentd.conf
@@ -511,3 +511,14 @@ Hostname=Zabbix server
# Mandatory: no
# Default:
# TLSCipherAll=
+
+####### For advanced users - TCP-related fine-tuning parameters #######
+
+## Option: ListenBacklog
+# The maximum number of pending connections in the queue. This parameter is passed to
+# listen() function as argument 'backlog' (see "man listen").
+#
+# Mandatory: no
+# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
+# Default: SOMAXCONN (hard-coded constant, depends on system)
+# ListenBacklog=
diff --git a/conf/zabbix_agentd.win.conf b/conf/zabbix_agentd.win.conf
index 9b5a18539c6..9eeed1140c8 100644
--- a/conf/zabbix_agentd.win.conf
+++ b/conf/zabbix_agentd.win.conf
@@ -470,3 +470,14 @@ Hostname=Windows host
# Mandatory: no
# Default:
# TLSCipherAll=
+
+####### For advanced users - TCP-related fine-tuning parameters #######
+
+## Option: ListenBacklog
+# The maximum number of pending connections in the queue. This parameter is passed to
+# listen() function as argument 'backlog' (see "man listen").
+#
+# Mandatory: no
+# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
+# Default: SOMAXCONN (hard-coded constant, depends on system)
+# ListenBacklog=
diff --git a/conf/zabbix_proxy.conf b/conf/zabbix_proxy.conf
index 8ba915f3d69..92c17bca205 100644
--- a/conf/zabbix_proxy.conf
+++ b/conf/zabbix_proxy.conf
@@ -901,3 +901,13 @@ StatsAllowedIP=127.0.0.1
# Default:
# VaultDBPath=
+####### For advanced users - TCP-related fine-tuning parameters #######
+
+## Option: ListenBacklog
+# The maximum number of pending connections in the queue. This parameter is passed to
+# listen() function as argument 'backlog' (see "man listen").
+#
+# Mandatory: no
+# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
+# Default: SOMAXCONN (hard-coded constant, depends on system)
+# ListenBacklog=
diff --git a/conf/zabbix_server.conf b/conf/zabbix_server.conf
index 0f2ed8a1ff6..98d99af7288 100644
--- a/conf/zabbix_server.conf
+++ b/conf/zabbix_server.conf
@@ -933,3 +933,14 @@ StatsAllowedIP=127.0.0.1
# Range: 1-3600
# Default:
# ProblemHousekeepingFrequency=60
+
+####### For advanced users - TCP-related fine-tuning parameters #######
+
+## Option: ListenBacklog
+# The maximum number of pending connections in the queue. This parameter is passed to
+# listen() function as argument 'backlog' (see "man listen").
+#
+# Mandatory: no
+# Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum)
+# Default: SOMAXCONN (hard-coded constant, depends on system)
+# ListenBacklog=