We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Both values are read in logcollector/main.c but not in win32/win_agent.c
loop_timeout = getDefine_Int("logcollector", "loop_timeout", 1, 120); open_file_attempts = getDefine_Int("logcollector", "open_attempts", 2, 998);
loop_timeout is imho not critical. On win32 it is not critical because sleep(loop_timeout +2); is used.
sleep(loop_timeout +2);
open_file_attempts with value "0" leads imho to unnecessary logfile rereads and should be fixed.
The text was updated successfully, but these errors were encountered:
patch.diff.txt
Sorry, something went wrong.
This was submitted in issue ossec#976 by th0u.
6987256
loop_timeout and open_file_attempts are read by logcollector/main.c but not in win32/win_agent.c. This could be an issue for win32 agents.
No branches or pull requests
Both values are read in logcollector/main.c but not in win32/win_agent.c
loop_timeout is imho not critical. On win32 it is not critical because
sleep(loop_timeout +2);
is used.open_file_attempts with value "0" leads imho to unnecessary logfile rereads and should be fixed.
The text was updated successfully, but these errors were encountered: