Hello,
I have my input section where I have a given path which has multiple directories and log files in it. I have written the following:
input {
file {
path => "/home/deepthi/Desktop/logs/**/*.log"
}
}
I want to create multiple output files in the output section with the same name as the input file name and just append '-logoutput.log' at the end of the filename. Can anybody please tell me how this can be achieved in Logstash?
Thanks in advance!
Deepthi