I am very new to logstash and trying to work with Logstash. As of now i simply want to read a log file and put it under a different file. But output file is not getting generated. Below is the configuration i am using in logstash.conf file:
# Sample Logstash configuration for creating a simple
# Beats -> Logstash -> Elasticsearch pipeline.
input {
file {
path => "C:\test.log"
start_position => "beginning"
}
}
output {
file {
path => "C:\temp\outlog.log"
}
}
Can anyone please help me out as what i am missing here. This is a simple example i want to execute from a tutorial.