Logstash installed successfully and also service started but read and write functionality is not working

Hi,
I am using window 7,
step 1. i have installed elasticsearch-6.2.1 in my system and tested using default port localhost:9200 and it is working perfectly
step 2 . after that i have installed logstash-6.2.1 using nssm and it install sucessfully.

created logstash.conf under /bin folder and setup path under it for read and write file like below:

logstash.conf
input{
file{
path => "G:\Rajkumar\ELK\Logstash-input.log"
start_position => "beginning"
}
}
output{
file{
path => "G:\Rajkumar\ELK\Logstash-output.log"
}

}
but logstash not overwriting Logstash-output.log
so kindly help me if logstash service is started sucessfully then why it's not writing any data into Logstash-output.log from Logstash-input.log

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.