C:\Users\bhagupta\elk_poc\logstash-2.3.2\logstash-2.3.2\bin>logstash -f logstash.conf
io/console not supported; tty will not be manipulated
Settings: Default pipeline workers: 4
Note : After this nothing get displayed on console.
Below are the contents from my logstash.conf file
input {
file {
path => ["C:/Users/bhagupta/elk_poc/output.log"]
type => "apache"
start_position => "beginning"
sincedb_path => "/dev/null"
}
}
filter {
grok {
match => { "message" => "%{COMBINEDAPACHELOG}"}
}
}
output {
stdout {
codec => rubydebug
}
elasticsearch {}
}
I guess it's unable to read the content from output.log file. Can somebody help me in resolving this problem?