NXLog for Windows - include_stdout not working
ADE
Hi,
as described in the user manual, I am trying to use a PowerShell script to dynamically get the IIS Log path.
The problem is that the include_stdout directive is not being recognized as a valid one.
This is my input module
Module im_file
include_stdout %ROOT%\get_iis_log_paths.cmd
if $raw_event =~ /^#/ drop();
else
{
w3c_parser->parse_csv();
$EventTime = parsedate($date + "T" + $time + ".000Z");
}
In the nxlog.log file I see the following error message
2017-12-06 13:27:02 ERROR invalid keyword: include_stdout at C:\Program Files (x86)\nxlog\conf\nxlog.conf:62
2017-12-06 13:27:02 ERROR module 'iis_w3c' has configuration errors, not adding to route 'IIS_Site1' at C:\Program Files (x86)\nxlog\conf\nxlog.conf:107
Any help would be appreciated