Discover logs in Kibana
This video shows you how to create discover views in Kibana to explore Java & access logs pushed by Woofer.
Pre-requisites: Logstash configuration
In order to be able to send directly logs from Woofer to Logstash in JSON format, you have to setup a Logstash tcp
input with json
codec as follows:
input {
tcp {
port => 4321
codec => json
}
}