HI,

I am trying to get logs from tomcat through nxlog.

can you please suggest what changes i need to make in config file of 
nxlog.conf ?

Linux - Centos 6.6
tomcat logs file location - /vol1/apache-tomcat-8.0.15/logs/catalina.out
graylog host - lb01-graylog
port - lb01-graylog



## This is a sample configuration file. See the nxlog reference manual 
about the
## configuration options. It should be installed locally under
## /usr/share/doc/nxlog-ce/ and is also available online at
## http://nxlog.org/docs

########################################
# Global directives                    #
########################################
User nxlog
Group nxlog

LogFile /var/log/nxlog/nxlog.log
LogLevel INFO

########################################
# Modules                              #
########################################
<Extension _syslog>
    Module      xm_syslog
</Extension>

<Input in1>
    Module      im_udp
    Port        514
    Exec        parse_syslog_bsd();
</Input>

<Input in2>
    Module      im_tcp
    Port        514
</Input>

<Output fileout1>
    Module      om_file
    File        "/var/log/logmsg.txt"
    Exec        if $Message =~ /error/ $SeverityValue = 
syslog_severity_value("error");
    Exec        to_syslog_bsd();
</Output>

<Output fileout2>
    Module      om_file
    File        "/var/log/logmsg2.txt"
</Output>

########################################
# Routes                               #
########################################
<Route 1>
    Path        in1 => fileout1
</Route>

<Route tcproute>
    Path        in2 => fileout2
</Route>

-- 
You received this message because you are subscribed to the Google Groups 
"Graylog Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/graylog2/3a818638-5cb8-4ea5-a80a-45f6e4fe9409%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to