Hi,
I just install all the latest kibana 4.5 / elasticsearch and logstash on a ubuntu server.
I'm sending logs from syslog to the server but kibana still say that it can't find results.
here is the conf file
`input {
lumberjack {
port => 514
type => "logs"
ssl_certificate => "/etc/pki/tls/certs/logstash-forwarder.crt"
ssl_key => "/etc/pki/tls/private/logstash-forwarder.key"
}
}
filter {
if [type] == "syslog" {
grok {
match => { "message" => "%{SYSLOGLINE}" }
}
date {
match => [ "timestamp", "MMM d HH:mm:ss", "MMM dd HH:mm:ss" ]
}
}
}
output {
elasticsearch { hosts=> localhost index => "logstash-%{+YYYY.MM.dd}" }
stdout { codec => rubydebug }
}output {
elasticsearch { hosts => localhost index => "logstash-%{+YYYY.MM.dd}" }
stdout { codec => rubydebug }'
Could you help me to troubleshoot this?
How can i first check if logs arrive to the server, if logstash receive it and if it does somthing with it.
Thx