Greetings!

Experimenting with nxlog (ce-2.6.1131 (RPM) as well as ce-2.5.1089 (from
source)), I have created the following configuration:
   
    User nxlog
    Group nxlog
    
    LogFile /var/log/nxlog/nxlog.log
    LogLevel INFO
    
    #
    
    <Input syslog1>
        Module      im_tcp
        Host        0.0.0.0
        Port        514
    </Input>
    
    <Input internal1>
        Module      im_internal
    </Input>
    
    #
    
    <Processor p1>
        Module      pm_null
    </Processor>
    
    #
    
    <Output out1>
        Module      om_tcp
        Host        127.0.0.1
        Port        23001
    </Output>
    
    #
    
    <Route a>
        Path        internal1 => p1 => out1
    </Route>
    
    <Route b>
        Path        syslog1 => p1 => out1
    </Route>

Also posted here: https://gist.github.com/anonymous/7888305

Starting a listener on port 23001 (`nc -k -l 23001`) I find that I
receive (most of -- I think) the messages sent by the 'internal' module,
but none from any of the syslog listeners. Disabling the 'p1' Processor
in either Route makes everything work as intended. 

Furthermore, in the log file I find lines informing me that:

    ERROR couldn't open logqueue file (null)/p1:b.q for writing;No such
    file or directory

... and I can't figure out whether that is part of the problem or not,
as it only happens when I _stop_ the service.


Any ideas?


Cheers,
Ruben V.

------------------------------------------------------------------------------
Sponsored by Intel(R) XDK 
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631&iu=/4140/ostg.clktrk
_______________________________________________
nxlog-ce-users mailing list
nxlog-ce-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nxlog-ce-users

Reply via email to