Skip to content

Commit d895469

Browse files
authored
Merge pull request #8922 from wazuh/bug/idr342-add-rlimit_nofile-parameter
Add `wazuh_modules.rlimit_nofile` internal configuration option
2 parents 56c0153 + 107d04e commit d895469

File tree

2 files changed

+38
-31
lines changed

2 files changed

+38
-31
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ All notable changes to this project will be documented in this file.
1717
- Added Wazuh agent deployment on Docker documentation. ([#8798](https://github.com/wazuh/wazuh-documentation/pull/8798)) ([#8845](https://github.com/wazuh/wazuh-documentation/pull/8845)) ([#8857](https://github.com/wazuh/wazuh-documentation/pull/8857))
1818
- Added Wazuh indexer indices. ([#8887](https://github.com/wazuh/wazuh-documentation/pull/8887))
1919
- Added deprecation warnings for legacy operating systems. ([#8897](https://github.com/wazuh/wazuh-documentation/pull/8897))
20+
- **Post-release**: Added the `wazuh_modules.rlimit_nofile` internal configuration option. ([#8922](https://github.com/wazuh/wazuh-documentation/pull/8922))
2021

2122
### Changed
2223

source/user-manual/reference/internal-options.rst

Lines changed: 37 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,37 +1096,43 @@ Once these settings have been adjusted, the file must be saved followed by a res
10961096
Wazuh Modules
10971097
-------------
10981098

1099-
+--------------------------------+---------------+-------------------------------------------------------------------------------------+
1100-
| **wazuh_modules.task_nice** | Description | Indicates the priority of the tasks. The lower the value, the higher the priority. |
1101-
+ +---------------+-------------------------------------------------------------------------------------+
1102-
| | Default value | 10 |
1103-
+ +---------------+-------------------------------------------------------------------------------------+
1104-
| | Allowed value | Any integer between -20 and 19. |
1105-
+--------------------------------+---------------+-------------------------------------------------------------------------------------+
1106-
| **wazuh_modules.max_eps** | Description | Maximum number of events per second sent by all Wazuh Module. |
1107-
+ +---------------+-------------------------------------------------------------------------------------+
1108-
| | Default value | 100 |
1109-
+ +---------------+-------------------------------------------------------------------------------------+
1110-
| | Allowed value | Any integer between 1 and 1000 |
1111-
+--------------------------------+---------------+-------------------------------------------------------------------------------------+
1112-
| **wazuh_modules.kill_timeout** | Description | Time for a process to quit before being killed during Modulesd exiting, in seconds. |
1113-
+ +---------------+-------------------------------------------------------------------------------------+
1114-
| | Default value | 10 |
1115-
+ +---------------+-------------------------------------------------------------------------------------+
1116-
| | Allowed value | 0: Kill immediately |
1117-
+ + +-------------------------------------------------------------------------------------+
1118-
| | | Any integer between 1 and 3600 |
1119-
+--------------------------------+---------------+-------------------------------------------------------------------------------------+
1120-
| **wazuh_modules.debug** | Description | Debug level. |
1121-
+ +---------------+-------------------------------------------------------------------------------------+
1122-
| | Default value | 0 |
1123-
+ +---------------+-------------------------------------------------------------------------------------+
1124-
| | Allowed value | 0: No debug output. |
1125-
+ + +-------------------------------------------------------------------------------------+
1126-
| | | 1: Standard debug output. |
1127-
+ + +-------------------------------------------------------------------------------------+
1128-
| | | 2: Verbose debug output. |
1129-
+--------------------------------+---------------+-------------------------------------------------------------------------------------+
1099+
+-----------------------------------+---------------+-------------------------------------------------------------------------------------+
1100+
| **wazuh_modules.task_nice** | Description | Indicates the priority of the tasks. The lower the value, the higher the priority. |
1101+
+ +---------------+-------------------------------------------------------------------------------------+
1102+
| | Default value | 10 |
1103+
+ +---------------+-------------------------------------------------------------------------------------+
1104+
| | Allowed value | Any integer between -20 and 19. |
1105+
+-----------------------------------+---------------+-------------------------------------------------------------------------------------+
1106+
| **wazuh_modules.rlimit_nofile** | Description | Maximum number of file descriptor that Wazuh modules can open. |
1107+
+ +---------------+-------------------------------------------------------------------------------------+
1108+
| | Default value | 8192 |
1109+
+ +---------------+-------------------------------------------------------------------------------------+
1110+
| | Allowed value | Any integer between 1024 and 1048576 |
1111+
+-----------------------------------+---------------+-------------------------------------------------------------------------------------+
1112+
| **wazuh_modules.max_eps** | Description | Maximum number of events per second sent by all Wazuh Module. |
1113+
+ +---------------+-------------------------------------------------------------------------------------+
1114+
| | Default value | 100 |
1115+
+ +---------------+-------------------------------------------------------------------------------------+
1116+
| | Allowed value | Any integer between 1 and 1000 |
1117+
+-----------------------------------+---------------+-------------------------------------------------------------------------------------+
1118+
| **wazuh_modules.kill_timeout** | Description | Time for a process to quit before being killed during Modulesd exiting, in seconds. |
1119+
+ +---------------+-------------------------------------------------------------------------------------+
1120+
| | Default value | 10 |
1121+
+ +---------------+-------------------------------------------------------------------------------------+
1122+
| | Allowed value | 0: Kill immediately |
1123+
+ + +-------------------------------------------------------------------------------------+
1124+
| | | Any integer between 1 and 3600 |
1125+
+-----------------------------------+---------------+-------------------------------------------------------------------------------------+
1126+
| **wazuh_modules.debug** | Description | Debug level. |
1127+
+ +---------------+-------------------------------------------------------------------------------------+
1128+
| | Default value | 0 |
1129+
+ +---------------+-------------------------------------------------------------------------------------+
1130+
| | Allowed value | 0: No debug output. |
1131+
+ + +-------------------------------------------------------------------------------------+
1132+
| | | 1: Standard debug output. |
1133+
+ + +-------------------------------------------------------------------------------------+
1134+
| | | 2: Verbose debug output. |
1135+
+-----------------------------------+---------------+-------------------------------------------------------------------------------------+
11301136

11311137
.. _wazuh_command_remote_commands:
11321138

0 commit comments

Comments
 (0)