Hello,
I’m sending syslog data from Window Server using NXlog to Graylog and we’re generating lots of logs well over 500 message per second.
Is there a setting I’m missing in NXlog or Graylog to filter which messages are sent to Graylog?
NXlog conf
## This is a sample configuration file. See the nxlog reference manual about the
## configuration options. It should be installed locally and is also available
## online at http://nxlog.org/docs/
## Please set the ROOT to the folder your nxlog was installed into,
## otherwise it will not start.
#define ROOT C:\Program Files\nxlog
define ROOT C:\Program Files (x86)\nxlog
Moduledir %ROOT%\modules
CacheDir %ROOT%\data
Pidfile %ROOT%\data\nxlog.pid
SpoolDir %ROOT%\data
LogFile C:\Logs\Nxlog\nxlog.log
<Extension _syslog>
Module xm_syslog
</Extension>
<Input in_eventlog>
Module im_msvistalog
</Input>
<Input in_internal>
Module im_internal
</Input>
<Processor p_2syslog>
Module pm_transformer
Exec $Hostname = hostname();
OutputFormat syslog_rfc5424
</Processor>
<Output out>
Module om_tcp
Host 10.200.60.51
Port 10514
# Exec to_syslog_snare();
</Output>
<Route 1>
Path in_internal, in_eventlog => p_2syslog => out
</Route>