Have NXLog always forward file on disk (even if it hasn't changed)

View thread

demetri

I have the following NXLog config below that reads a file from disk and forwards it to another host (syslog). By default, it appears NXLog only forwards the data in the log file if it has changed.

How can you configure 'nxlog.conf' so that it always forwards the file, even if the data hasn't changed?

<Input in> Module im_file File "C:\myfile.txt" </Input>

<Output out> Module om_tcp Host 127.0.0.1 Port 12345 </Output>

<Route 1> Path in => out </Route>