Hi
My logstash config file is
input {
file {
path => "/home/Esearch/inp-lgstsh"
start_position => "beginning"
ignore_older => 0
}
}
filter {
if [path] =~ "access" {
mutate { replace => { "type" => "apache_access" } }
grok {
match => { "message" => "%{COMBINEDAPACHELOG}" }
}
}
geoip {
source => "clientip"
}
date {
match => [ "timestamp" , "YYYY-mm-dd HH:mm:ss Z" ]
}
}
output {
elasticsearch {
protocol => http
hosts => ["localhost:9200"]
index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
}
stdout { codec => rubydebug }
}
Input file is
2016-06-05 02:42:55,664 INFO BlockStateChange: BLOCK* processReport: from DatanodeRegistration(87.987.65.34, storageID=DS-1921357720-127.0.0.1-50010-1384944321031, infoPort=50075, ipcPort=50020, storageInfo=lv=-40;cid=CID-5058f35e-cc62-4ee5-be05-a5ec592d9238;nsid=2087330736;c=0), blocks: 647, processing time: 6 msecs
when executing bin/logstash -f logstash.config -
Settings: Default pipeline workers: 4
Pipeline main started
and it is not executing furthur.
Can i get reason for this abnormal behaviour.
Thanks in advance