Ask questions. Get answers. Find technical product solutions from passionate experts in the NXLog community.

Compression and Encryption
HiI have configured compression and encryption for locally stored logs, and it seems to be working fine. However, when I run the command c:\program files\nxlog\nxlog-processor.exe -c d:\data\decrypted.conf, I encounter an error while attempting to decrypt the currently active file. The error message reads: 'error [im_file:enc_in] Crypto SSL error: error:0606506D:digital envelope routines:EVP_DecryptFinal_ex:wrong final block length.' Despite this error, the file is decrypted successfully, and we are able to read the log file clearly. Could you please advise on the meaning of this error? I have not encountered any errors for older encrypted files. Thank youOur current config is as follows:nxlog.confPanic Softdefine INSTALLDIR D:\Program Files\nxlog#ModuleDir %INSTALLDIR%\modules#CacheDir  %INSTALLDIR%\data#SpoolDir  %INSTALLDIR%\datadefine CERTDIR %INSTALLDIR%\certdefine CONFDIR %INSTALLDIR%\conf\nxlog.d# Note that these two lines define constants only; the log file location# is ultimately set by the `LogFile` directive (see below). The# `MYLOGFILE` define is also used to rotate the log file automatically# (see the `_fileop` block).define LOGDIR D:\Program Files\nxlog\datadefine MYLOGFILE %LOGDIR%/nxlog.log# If you are not using NXLog Manager, disable the `include` line# and enable LogLevel and LogFile.#include %CONFDIR%\*.confLogLevel    INFOLogFile     %MYLOGFILE%<Extension xml>   Module      xm_xml</Extension><Extension exec>   Module      xm_exec</Extension><Extension _syslog>Module xm_syslog</Extension><Extension zlib>   Module      xm_zlib</Extension><Extension crypto>   Module       xm_cryptoPasswordFile "d:\\Program Files\\nxlog\\conf\\nxlogkeyfile.pem"</Extension><Extension fileop>   Module      xm_fileop</Extension># Input from remote relay<Input nxlog_relay> Module   im_ssl ListenAddr 0.0.0.0:8514 CAFile  %CERTDIR%/root.pem CertFile %CERTDIR%/xxx..pem CertkeyFile %CERTDIR%/xxx..pem RequireCert FALSE Exec  $Hostname = hostname(); parse_syslog(); $DeviceHostname = $Hostname;</Input># This Section contains the configuration to receive logs forwarded by  Servers<Input servers_ssl> Module      im_ssl ListenAddr 0.0.0.0:7514 CAFile  %CERTDIR%/root.pem CertFile %CERTDIR%/xxx..pem CertkeyFile %CERTDIR%/xxx..pem RequireCert FALSE Exec  $Hostname = hostname(); parse_syslog(); $DeviceHostname = $Hostname; </Input><Output log_local_encrypted>Module   om_fileFile     "d:/data/nxlogstore/" + $DeviceHostname + "/" + $DeviceHostname + "-" + strftime(now(), '%Y%m%d') + ".log"CreateDir trueExec  to_syslog_ietf();OutputType zlib.compress, crypto.aes_encrypt</Output><Output log_remote_encrypted>   Module   om_fileFile     "d:/data/nxlogstore/" + $DeviceHostname + "/" + $DeviceHostname + "-" + strftime(now(), '%Y%m%d') + ".log.gz.enc"CreateDir trueExec  to_syslog_ietf();OutputType zlib.compress, crypto.aes_encrypt</Output># Path to forward logs to locally<Route Windows_Network_To_Locally>       Path    servers_ssl, network_tcp_ssl => log_local_encrypted</Route># Path to forward logs to locally<Route Remote_Windows_Network_To_Locally>       Path    nxlog_relay => log_remote_encrypted</Route># This block rotates `%MYLOGFILE%` on a schedule. Note that if `LogFile`# is changed in managed.conf via NXLog Manager, rotation of the new# file should also be configured there.<Extension _fileop>   Module  xm_fileop   # Check the size of our log file hourly, rotate if larger than 5MB   <Schedule>       Every   1 hour       <Exec>           if ( file_exists('%MYLOGFILE%') and                (file_size('%MYLOGFILE%') >= 5M) )           {                file_cycle('%MYLOGFILE%', 8);           }       </Exec>   </Schedule>   # Rotate our log file every week on Sunday at midnight   <Schedule>       When    @weekly       Exec    if file_exists('%MYLOGFILE%') file_cycle('%MYLOGFILE%', 8);   </Schedule></Extension>Regards, Billy

billychua created
Replies: 0
View post »
last updated
Splitting Logs by filter and send them to two different Graylogs
Hello everyone,I'm trying to solve a problem that seems simple.I would like to log Windows events on two different log servers. I would like to send all relevant logs to a Graylog but without the MSSQL logs. These are filtered and sent to another Graylog.Filtering by “MSSQL-ONLY” works fine, but dropping MSSQL events does not work. I get all logs including MSSQL an the "logs" output.Any idea? Windows Server 2022, nxlog-ce-3.2.2329.msi define ROOT C:\Program Files\nxlog define CERTDIR %ROOT%\cert define CONFDIR %ROOT%\conf define LOGDIR %ROOT%\data define LOGFILE %LOGDIR%\nxlog.log LogFile %LOGFILE% Moduledir %ROOT%\modules CacheDir %ROOT%\data Pidfile %ROOT%\data\nxlog.pid SpoolDir %ROOT%\data <Extension gelf> Module xm_gelf </Extension> <Input eventlog> Module im_msvistalog Query <QueryList> <Query Id="0"> <Select Path="Application"></Select> <Select Path="System"></Select> <Select Path="Security"></Select> <Select Path="Microsoft-Windows-Windows Defender/Operational"></Select> </Query> </QueryList> <Exec> if ($SourceName = "SQLSERVER") drop(); </Exec> </Input> <Input sqllog> Module im_msvistalog Query <QueryList> <Query Id="0"> <Select Path="Application">*[System[Provider[@Name='MSSQLSERVER']]]</Select> </Query> </QueryList> </Input> <Output logs> Module om_tcp Host graylog01.something.com Port 12202 OutputType GELF_TCP Exec $Hostname = 'XYZ.somthing.com'; </Output> <Output sqllogs> Module om_tcp Host graylog02.something.com Port 12202 OutputType GELF_TCP Exec $Hostname = 'XYZ.somthing.com'; </Output> <Route eventlog_to_udp> Path eventlog => logs </Route> <Route sqllog_to_udp> Path sqllog => sqllogs </Route> 

reesthil created
Replies: 0
View post »
last updated
How to use wildcard on IM config file for YYMMDDN.log
I would like to know how to use the wildcard if the logs name file contains a date. # Monitor application log files<Input watchfile> Module im_file File 'C:\\Application\\log\\240220N.Log' Exec $Message = $raw_event; Exec if file_name() =~ /.*\\(.*)/ $SourceName = $1; SavePos TRUE Recursive TRUE</Input>Thank you

Davin created
Replies: 0
View post »
last updated
NXLogs routed to two destinations.
We have configured  NXLog to monitor DHCP server logs and  sends it to two different destinations using TCP:what is the correct way of routing the output to two diffrent distnations..<Output out1>   Module      om_tcp   Host        destination1   Port       XXX  </Output><Output out2>   Module      om_tcp   Host        destination2   Port        XXXX   </Output><Route route1>   Path        input1 => out1   Path        input2 => out2</Route>

shahad1 created
Replies: 0
View post »
last updated
Issue with Large CSV Messages Being Truncated in Graylog Using NXLog
I am experiencing a problem with the NXLog Graylog sidecarwhere large CSV messages are being truncated when sent to Graylog via im_file and xm_gelf. The issue occurs regardless of whether I use UDP or TCP transport. Specifically, when a single field (FullFormattedMessage) exceeds approximately 11,000 bytes, the message gets truncated to 64 characters in Graylog's interface causing the entire large field to be omitted. This truncation appears to be due to the $ShortMessage field, which has a character limit.Additionally, when the message is truncated, the $EventTime field, which is derived from a CSV column using parsedate(), does not parse correctly. It seems that when the message reaches its size limit, the $row_event is sent without executing any further processing. My current NXLog configuration is as follows:define INSTALLDIR /etc/nxlog define CERTDIR %INSTALLDIR%/cert define CONFDIR %INSTALLDIR%/nxlog.d define LOGDIR /var/log/nxlog define MYLOGFILE %LOGDIR%/nxlogCSVtest.log LogLevel INFO LogFile %MYLOGFILE% <Extension csv> Module xm_csv Fields IpAddress,UserAgent,Key,CreatedTime,UserName,FullFormattedMessage </Extension> <Extension gelf> Module xm_gelf </Extension> <Input file> Module im_file File '/home/user/test/logs_to_send.csv' <Exec> csv->parse_csv(); if ($UserName =~ /USER_A/) drop(); if (not defined($CreatedTime) or $CreatedTime=='' ) drop(); $EventTime = parsedate($CreatedTime); $CreatedTime = undef; # These fields are needed for Graylog $gl2_source_collector = '${sidecar.nodeId}'; $collector_node_id = '${sidecar.nodeName}'; &lt;/Exec&gt; </Input> <Output graylog_udp> Module om_udp Host 127.0.0.1 Port 5555 OutputType GELF_UDP </Output> <Route 1> Path file => graylog_udp </Route> The log file indicates an "Invalid CSV input" error for each row that is giving me the problem, but only displays the first 960 characters of the CSV rows in question.2024-02-13 16:59:08 ERROR Invalid CSV input: <the first 960 characters of the csv row> I am running NXLog CE on Ubuntu 22.04 with the Graylog sidecar, using package version nxlog-ce_3.2.2329_ubuntu22_amd64.On the data that desn't get the error it's working great, I know i'm hitting some limitation but i would like to know witch one and how can i change it.

soc_nxlog created
Replies: 1
View post »
last updated
Send same Log to 2 Servers
Hi,  I can send the log to 1 Server only.  How do I send the same log to 2 server for just in case 1 got wipe out by ransomwareThis is the configuration that work for #1 Server.  My #2 Server has different IP.   What is the proper way to do this? <Extension _gelf>   Module      xm_gelf</Extension># Snare compatible example configuration# Collecting event log<Input in>    Module      im_msvistalog</Input># Sends Eevent in GELF format to Graylog Servers<Output out>    Module      om_udp    Host        10.10.12.68    Port        12201    OutputType  GELF</Output># # Connect input 'in' to output 'out'<Route 1>    Path        in => out</Route>

trials@us.gnld.com created
Replies: 0
View post »
last updated
Template Variables
When sending data to InsightIDR, you have to specify a unique port for each data source.  For example, on an AD DC, you need a unique port for security event logs, DNS logs, and DHCP logs.  As it currently appears, I would need a template or individual configuration on each system. To optimize/simplify this, is it possible to use FIELDS and PATTERNS in templates?  e.g. DC1_SecLog=<port 1000>, DC1_DNS=<port 1001>.  In the template reference a FIELD/PATTERN based on the agent info like hostname and/or tags?  Just looking for a way to minimize the number of templates I have to manage.

Mr. J created
Replies: 0
View post »
last updated
NXLog Manager 5.7.5935 - Missing "Template Type" dropdown
Learning how to build out templates and I see in the documentation, that you there should be an option for “MASTER” or “SUB” template types as described here:  https://docs.nxlog.co/manager/current/templates/index.htmlHowever, my new server (5.7.5935) does not have that option when creating a template.  Is there something that needs to be enabled or some set of actions before that becomes visible? 

Mr. J created
Replies: 0
View post »
last updated
APPCRASH on Windows in Module im_msvistalog - Logs and Config added
Hi,sorry, just added config an logs….We have some installations of NXLOG in Version 3.2.2339. This works fine, but every 5 to 10 minutes we find exactly 50 events showing a crash of nxlog.exe in module im_msvistalog.Problem signature: P1: nxlog.exe P2: 0.0.0.0 P3: 643951bd P4: im_msvistalog.dll P5: 0.0.0.0 P6: 643951bd P7: c0000005 P8: 00000000000045b2 P9: P10:  Any suggestions how to fix that?Thanks & Best regards, Thilo nxlog.cfg:define ROOT C:\Program Files\nxlog define CERTDIR %ROOT%\cert define CONFDIR %ROOT%\conf define LOGDIR %ROOT%\data define LOGFILE %LOGDIR%\nxlog.log LogFile %LOGFILE% Moduledir %ROOT%\modules CacheDir %ROOT%\data Pidfile %ROOT%\data\nxlog.pid SpoolDir %ROOT%\data <Extension gelf> Module xm_gelf </Extension> <Input eventlog> Module im_msvistalog Query <QueryList> <Query Id="0"> <Select Path="Application"></Select> <Select Path="System"></Select> <Select Path="Security"></Select> <Select Path="Microsoft-Windows-Windows Defender/Operational"></Select> </Query> </QueryList> </Input> <Output tcp> Module om_tcp Host graylog.xxxx.yyyy Port 12202 OutputType GELF_TCP Exec $Hostname = 'hostXYZ.xxxx.yyyy'; </Output> <Route eventlog_to_udp> Path eventlog => tcp </Route>Crash-Event:Debug-Log atTime of Event (19:46:37)2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa201b610 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b840 2024-02-14 19:46:37 DEBUG worker 1 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d49f0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 1 got signal for new job 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa23d48b0 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b5c0 2024-02-14 19:46:37 DEBUG worker 1 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b7a0 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 1 got signal for new job 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa23d47c0 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa201b5c0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b890 2024-02-14 19:46:37 DEBUG worker 1 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d49a0 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 1 got signal for new job 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa23d47c0 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 1 waiting for new event 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b5c0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d4a40 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG new event in event_thread [eventlog:READ] 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: READ (eventlog) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG no events or no future events, event thread sleeping in condwait 2024-02-14 19:46:37 DEBUG worker 1 got signal for new job 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa201b570 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: READ (eventlog) 2024-02-14 19:46:37 DEBUG im_msvistalog checking for new events... 2024-02-14 19:46:37 DEBUG im_msvistalog read 21 events 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG [tcp] apr_pollset_poll was interrupted 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d4a90 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1292 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b840 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b7a0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1449 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b7f0 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d4770 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1292 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d4900 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b7a0 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1292 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1292 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b5c0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d4810 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 1 2024-02-14 19:46:37 DEBUG om_tcp sent 1292 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 2 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1292 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d4860 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b610 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1292 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b660 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d4950 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b610 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG [tcp] apr_pollset_poll was interrupted 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b5c0 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1292 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d47c0 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d4900 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1479 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1292 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d4810 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b700 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1883 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b840 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d49f0 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1843 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d47c0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b7a0 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 2011 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d4770 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b5c0 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 2019 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b660 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d4900 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1769 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b890 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d4a90 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1800 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d48b0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b5c0 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d4a40 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG [tcp] apr_pollset_poll was interrupted 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d49a0 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 1 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp sent 8161 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 2 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 1843 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b610 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d4950 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG om_tcp sent 2025 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d47c0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b840 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa201b610 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG before nx_logqueue_push, size: 0 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG [tcp] apr_pollset_poll was interrupted 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa23d03f0 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa201b750 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got (queuesize: 0) 2024-02-14 19:46:37 DEBUG RESUME: eventlog 2024-02-14 19:46:37 DEBUG new event in event_thread [eventlog:READ] 2024-02-14 19:46:37 DEBUG module eventlog already running, skipping resume 2024-02-14 19:46:37 DEBUG future event, event thread sleeping 1000000ms in cond_timedwait 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG executing statements 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d0580 2024-02-14 19:46:37 DEBUG evaluating expression 'string literal' at C:\Program Files\nxlog\conf\nxlog.conf:34 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG worker 0 got no event to process 2024-02-14 19:46:37 DEBUG RESUME: eventlog 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG module eventlog already running, skipping resume 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG om_tcp sent 1985 bytes 2024-02-14 19:46:37 DEBUG before nx_logqueue_pop, size: 1 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d04e0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG RESUME: eventlog 2024-02-14 19:46:37 DEBUG module eventlog already running, skipping resume 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa201b7f0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG found other events (1), adding poll event to end of list 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa23d0490 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: DATA_AVAILABLE (tcp) 2024-02-14 19:46:37 DEBUG om_tcp_write 2024-02-14 19:46:37 DEBUG add socket [21] 2024-02-14 19:46:37 DEBUG socket already added to pollset with reqevents [21 != 21] 2024-02-14 19:46:37 DEBUG tcp get_next_logdata: got NULL (queuesize: 0) 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 got signal for new job 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d0580 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa23d0530 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: MODULE_RESUME (eventlog) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG RESUME: eventlog 2024-02-14 19:46:37 DEBUG module eventlog already running, skipping resume 2024-02-14 19:46:37 DEBUG worker 1 waiting for new event 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 0 processing event 0xa23d03f0 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 got no event to process 2024-02-14 19:46:37 DEBUG worker 2 waiting for new event 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 1 got signal for new job 2024-02-14 19:46:37 DEBUG worker 1 processing event 0xa23d0490 2024-02-14 19:46:37 DEBUG worker 0 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp 2024-02-14 19:46:37 DEBUG [tcp] no poll events, pollset_poll timed out 2024-02-14 19:46:37 DEBUG nx_event_to_jobqueue: POLL (tcp) 2024-02-14 19:46:37 DEBUG event added to jobqueue 2024-02-14 19:46:37 DEBUG worker 2 got signal for new job 2024-02-14 19:46:37 DEBUG worker 2 processing event 0xa23d04e0 2024-02-14 19:46:37 DEBUG worker 1 waiting for new event 2024-02-14 19:46:37 DEBUG PROCESS_EVENT: POLL (tcp) 2024-02-14 19:46:37 DEBUG nx_module_pollset_poll: tcp    

reesthil created
Replies: 0
View post »
last updated
Forwarding events in EVTX file via syslog
Initiated a 30-day trial today to test what I had thought would be a fairly straightforward use case. The following config works fine to forward Windows events from the local machine via syslog, but when I add the File directive for im_msvistalog to the Input module section the events in the file are not forwarded over syslog. The file is correctly formatted and can be read via the event viewer. I also tested writing the contents of the file to a local json file as-per examples in the documentation, that worked fine as well. The file is publicly available at: https://github.com/sbousseaden/EVTX-ATTACK-SAMPLES/blob/master/Command%20and%20Control/DE_sysmon-3-rdp-tun.evtx Here are the contents of the config file: NoCache True define LOGHOST 192.168.xxx.xxx <Extension syslog> Module xm_syslog </Extension> <Input event_in> Module im_msvistalog File C:\Program Files\nxlog\logs\test_log.evtx Exec $Hostname = hostname(); </Input> <Output tcp_out> Module om_tcp Host %LOGHOST%:514 Exec to_syslog_snare(); </Output> <Route 1> Path event_in => tcp_out </Route>

jprad created
Replies: 2
View post »
last updated
NXLOG on Windows - Logs sent with a very long delay
Hi All,I am collecting and sending logs from a Windows Domain Controller (only security events). When I start the nxlog service, the logs are send in “real time”. However, Over time, a delay is generated, causing the accumulated delay to be hours after one day. What could happen to explain this behavior?Configurationdefine ROOT C:\Program Files\nxlog define CERTDIR %ROOT%\cert define CONFDIR %ROOT%\conf define LOGDIR %ROOT%\data define LOGFILE %LOGDIR%\nxlog.log LogFile %LOGFILE% Moduledir %ROOT%\modules CacheDir %ROOT%\data Pidfile %ROOT%\data\nxlog.pid SpoolDir %ROOT%\data <Extension _json> Module xm_json </Extension> <Input windows_security_eventlog> Module im_msvistalog <QueryXML> <QueryList> <Query Id="0"> <Select Path="Security">*</Select> </Query> </QueryList> </QueryXML> ReadFromLast True SavePos True </Input> <Output out_chronicle_windevents> Module om_tcp Host 172.16.94.69 Port 41001 Exec $EventTime = integer($EventTime) / 1000; Exec $EventReceivedTime = integer($EventReceivedTime) / 1000; Exec to_json(); </Output> <Route r2> Path windows_security_eventlog => out_chronicle_windevents </Route> Environment descriptionNXLog CE is running on Windows 2022 server Package version is 3.2.2329   

siem_20 created
Replies: 8
View post »
last updated
The MSI file seems to not be installing
Whenever I try to run the .msi to install the Nxlog CE I get this error message Am doing something incorrectly or is the download file broken?

CyberIke created
Replies: 0
View post »
last updated
SSL Certificate Error for im_ssl
I'm trying to capture Secure Syslog from an external source. The sender is green lights, but the NXLog.log file is showing a lot of this:2024-01-22 15:58:08 INFO nxlog-ce-3.2.2329 started 2024-01-22 15:58:08 INFO connecting to 127.0.0.1:6515 2024-01-22 15:58:08 INFO successfully connected to 127.0.0.1:6515… … 2024-01-22 16:14:32 WARNING SSL connection closed from (IP_REDACTED):53601 2024-01-22 16:14:32 ERROR SSL certificate verification failed: unable to get local issuer certificate (err: 20) 2024-01-22 16:14:32 WARNING SSL connection closed from (IP_REDACTED):46645 2024-01-22 16:14:32 ERROR SSL certificate verification failed: unable to get local issuer certificate (err: 20) 2024-01-22 16:14:32 WARNING SSL connection closed from (IP_REDACTED)47010 2024-01-22 16:14:32 ERROR SSL certificate verification failed: unable to get local issuer certificate (err: 20) 2024-01-22 16:14:32 WARNING SSL connection closed from (IP_REDACTED):46931 2024-01-22 16:14:32 ERROR SSL certificate verification failed: unable to get local issuer certificate (err: 20) 2024-01-22 16:14:32 WARNING SSL connection closed from (IP_REDACTED):46939 2024-01-22 16:14:32 INFO SSL connection accepted from (IP_REDACTED):43341and so on.I have tried just about every combination of certs/directives that I can find or think of, but I cannot get the connection to establish correctly. I validated the cert and chain using openssl and even tried using AllowExpired but that directive is not supported, apparently. The sending service is all green lights and happy. Any thoughts would be appreciated!Community version 3.2.2329 (Windows)conf:define ROOT C:\Program Files\nxlog define CERTDIR C:\Program Files\nxlog\cert Moduledir %ROOT%\modules CacheDir %ROOT%\data Pidfile %ROOT%\data\nxlog.pid SpoolDir %ROOT%\data LogFile %ROOT%\data\nxlog.log <Extension syslog> Module xm_syslog </Extension> <Input ssl> Module im_ssl Host 192.168.1.11 Port 6514 CAFile %CERTDIR%\Valid_Public_CA.crt CertFile %CERTDIR%\Valid_Public_cert.crt CertKeyFile %CERTDIR%\Valid_Public_key_decrypted.key AllowUntrusted TRUE Exec parse_syslog(); </Input> <Output ssl_output> Module om_sslHost 127.0.0.1 Port 6515 CAFile %CERTDIR%\Self-Signed.pem AllowUntrusted TRUE </Output> <Route 1> Path ssl => ssl_output </Route>

staticfactory created
Replies: 3
View post »
last updated
Need Windows DNS NXLog query (Audit Logs)
Hi Team,Can some one help me out here!I tried so many Windows DNS NXLog query (NXLog Community Edition) to capture the Audit Logs from Event Viewer, but no luck.Can you please provide the Windows DNS NXLog Query (NXLog Community Edition) to capture the Audit logs from Event Viewer.  Thanks

krishna.pusuluri@gmail.com created
Replies: 0
View post »
last updated
Forward MS SQL Database logs towards Syslog
Hello,I have Windows SQL server 2019 installed on Windows server 2019. i have installed the nxlog community edition on Server to forward the  Database logs generating in following path: C:\Program Files\Microsoft SQL Server\MSSQL15.BAMSM\MSSQL\Log\ERRORLOGI have written following conf in nxlog but it i have not received any logs in Syslog Server. Kindly help me to resolve the issue if there is any changes to be done in the below mentioned configuration:<Extension _syslog>   Module          xm_syslog</Extension><Input in>   Module      im_file   File      “C:\\Program Files\\Microsoft SQL Server\\MSSQL15.BAMSM\\MSSQL\\Log\\ERRORLOG”   SavePos      TRUE   Recursive TRUE</Input><Output out>   Module      om_udp   Host        192.168.105.10   Port        514   Exec        $Message = "TEST DB LOG " + $raw_event;   Exec        to_syslog_bsd();</Output><Route 1>   Path        in => out</Route>

manish.mohite created
Replies: 2
View post »
last updated
NxLog rpm for SLES 12 - Community edition
Hello All,We are using NxLog community edition for deployments and realized that there's no rpm available for SLES 12 (its does have for SLES 15). How can I get rpm for sles 12.? I can see the rpm available under Enterprise downloads. How to contact support to get this.?Thank you

Praveen created
Replies: 2
View post »
last updated
TLS/SSL (om_ssl) Multiple RootCAs
can be deleted

PehDeh created
Replies: 0
View post »
last updated
Ubuntu 23.10 (Mantic Minotaur)
Hello dear NXLog users,Does anyone know any NXLog release for Ubuntu 23.10 (Mantic Minotaur)? I've tried ubuntu 18 to 22 releases couldn't manage to install. Any NXLog solutions for Mantic Minotaur?Thanks a lot.  

R Celium created
Replies: 2
View post »
last updated
Vulnerabilities in NXLog libraries "libcrypto-1_1-x64.dll" and "libssl-1_1-x64.dll, related to "OpenSSL, Version: 1.1.1q"
Vulnerability scanner has discovered a number of vulnerabilities (CVE-2022-4450, CVE-2023-0215, CVE-2023-4807) related to “OpenSSL, version 1.1.1q” in NXLog libraries "libcrypto-1_1-x64.dll" and "libssl-1_1-x64.dll.Are there concrete plans and deadlines for updating these libraries by moving to non-vulnerable OpenSSL versions?

Djordje created
Replies: 2
View post »
last updated
Information missing from certain Windows events
We are an MSSP that uses NXLog CE (3.2.2329) installed on a Windows Server acting as a Windows Event Collector (WEC) to forward events from the forwarded events channel to a syslog collector that sends everything to our SIEM.TL;DRCertain Windows Events send to our SIEM via NXLog are missing the <EventData> information whereas Event Viewer shows a complete event on the logsource host where NXLog is installed on. Longer versionThe current setup is:Domain Controllers forward their security events using Windows Event Forwarding to our WEC using a source initiated event subscription where the content format is set to ‘Events’ instead of the default ‘RenderedText’ (this change helped solve similar issues where data was missing from events send via NXLog).We've verified that these security events are present in the forwarded events channel on the WEC with a complete XML of the events.NXLog CE (3.2.2329) is installed on this WEC using the following nxlog.conf file:Panic Soft #NoFreeOnExit TRUE define ROOT C:\Program Files\nxlog define CERTDIR %ROOT%\cert define CONFDIR %ROOT%\conf\nxlog.d define LOGDIR %ROOT%\data include %CONFDIR%\*.conf define LOGFILE %LOGDIR%\nxlog.log LogFile %LOGFILE% Moduledir %ROOT%\modules CacheDir %ROOT%\data Pidfile %ROOT%\data\nxlog.pid SpoolDir %ROOT%\data <Extension _syslog> Module xm_syslog </Extension> <Extension _charconv> Module xm_charconv AutodetectCharsets iso8859-2, utf-8, utf-16, utf-32 </Extension> <Extension _exec> Module xm_exec </Extension> <Extension _fileop> Module xm_fileop # Check the size of our log file hourly, rotate if larger than 5MB &lt;Schedule&gt; Every 1 hour Exec if (file_exists('%LOGFILE%') and \ (file_size('%LOGFILE%') &gt;= 5M)) \ file_cycle('%LOGFILE%', 8); &lt;/Schedule&gt; # Rotate our log file every week on Sunday at midnight &lt;Schedule&gt; When @weekly Exec if file_exists('%LOGFILE%') file_cycle('%LOGFILE%', 8); &lt;/Schedule&gt; </Extension> <Input Security> Module im_msvistalog <QueryXML> <QueryList> <Query Id="0" Path="ForwardedEvents"> <Select Path="ForwardedEvents">*</Select> </Query> </QueryList> </QueryXML> </Input> <Output DL> Module om_tcp Host 123.123.123.123 Port 514 Exec to_syslog_snare(); </Output> <Route eventlog_to_DL> Path Security => DL </Route>NXLog sends logs to a syslog collector in the same networkThis syslog collector has SIEM agent software forwarding events to our SIEMIn our SIEM we can see all events coming in from the syslog collector, including NXLog Windows events, however some appear to be missing data found in the <EventData> field in the XML of the actual event.The event id's we're having issues with are Windows event ID 4662,4768 and 4776.Other event id's are coming in ‘complete’ as expected such as this event id 4672:<14>Dec 8 11:32:42 dc2.example.com MSWinEventLog 1 Security 5986982 Fri Dec 08 11:32:42 2023 4672 Microsoft-Windows-Security-Auditing N/A N/A Success Audit dc2.example.com Special Logon Special privileges assigned to new logon. Subject: Security ID: S-1-5-21-2155563959-1375260949-369746351-17469 Account Name: server123$ Account Domain: EXAMPLE Logon ID: 0x4D8729AC Privileges: SeSecurityPrivilege SeDebugPrivilege 773449975Or event id 5140:<14>Dec 8 11:32:37 dc2.example.com MSWinEventLog 1 Security 5986753 Fri Dec 08 11:32:37 2023 5140 Microsoft-Windows-Security-Auditing N/A N/A Success Audit dc2.example.com File Share A network share object was accessed. Subject: Security ID: S-1-5-21-2155563959-1375260949-369746351-18565 Account Name: netwrixsvc Account Domain: EXAMPLE Logon ID: 0x4D86D440 Network Information: Object Type: File Source Address: 172.30.10.10 Source Port: 51173 Share Information: Share Name: \*\ADMIN$ Share Path: ??\C:\Windows Access Request Information: Access Mask: 0x1 Accesses: ReadData (or ListDirectory) 773449390 Whereas we receive the following information for the troubled event id's:4776<11>Dec 8 11:32:29 dc2.example.com MSWinEventLog 3 Security 5986385 Fri Dec 08 11:32:29 2023 4776 Microsoft-Windows-Security-Auditing N/A N/A Failure Audit dc2.example.com Credential Validation N/A 7734490444662<14>Dec 8 11:32:42 dc2.example.com MSWinEventLog 1 Security 5986976 Fri Dec 08 11:32:42 2023 4662 Microsoft-Windows-Security-Auditing N/A N/A Success Audit dc2.example.com Directory Service Access N/A 7734499584768<14>Dec 8 11:32:41 dc2.example.com MSWinEventLog 1 Security 5986915 Fri Dec 08 11:32:41 2023 4768 Microsoft-Windows-Security-Auditing N/A N/A Success Audit dc2.example.com Kerberos Authentication Service N/A 773449814 Due to the vast amount of events received by the WEC, extracting a subset of events for troubleshooting provided more challenging than expected. Nevertheless, the customer responsible for the WEC was able to provide me with an .evtx file containing some of the event id 4768 logs. These appear perfectly fine as shown in the screenshot and XML output below: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"> <System> <Provider Name="Microsoft-Windows-Security-Auditing" Guid="{54849625-5478-4994-a5ba-3e3b0328c30d}" /> <EventID>4768</EventID> <Version>0</Version> <Level>0</Level> <Task>14339</Task> <Opcode>0</Opcode> <Keywords>0x8020000000000000</Keywords> <TimeCreated SystemTime="2023-12-07T10:32:31.691008600Z" /> <EventRecordID>4520638617</EventRecordID> <Correlation /> <Execution ProcessID="700" ThreadID="1424" /> <Channel>Security</Channel> <Computer>dc1.example.com</Computer> <Security /> </System> <EventData> <Data Name="TargetUserName">netwrixsvc</Data> <Data Name="TargetDomainName">example</Data> <Data Name="TargetSid">S-1-5-21-2155563959-1375260949-369746351-18565</Data> <Data Name="ServiceName">krbtgt</Data> <Data Name="ServiceSid">S-1-5-21-2155563959-1375260949-369746351-502</Data> <Data Name="TicketOptions">0x40810010</Data> <Data Name="Status">0x0</Data> <Data Name="TicketEncryptionType">0x12</Data> <Data Name="PreAuthType">2</Data> <Data Name="IpAddress">::ffff:172.30.10.10</Data> <Data Name="IpPort">49712</Data> <Data Name="CertIssuerName"> </Data> <Data Name="CertSerialNumber"> </Data> <Data Name="CertThumbprint"> </Data> </EventData> </Event> What could possibly be the cause for these issues? Where can I check next? 

rom created
Replies: 2
View post »
last updated