Thank you for your quick reply.
I want to see the catalina.out log information in kibana so that I am using Logstash shipper to pull the log information. My basic config file looks below
input {
file {
type => "catalina-log"
path => [ "/var/log/tomcat8/catalina.out"]
}
}
output {
file {
path => [ "/tmp/logstash-shipper.log" ]
}
redis { host => "0.0.0.0"
data_type => "list"
key => "logstash"
}
}
With Regards,
Krishna Bhaskar.