Hi there! I wanted to learn, how can I index documents daily from newer file
For example, I have file search_2017.07.27.log
input {
file {
path => ['/etc/logstash/elk_searchlogs/search_*']
start_position => "beginning"
type => "searchlog"
ignore_older => 0
}
}
I want The indexing to go the following way
- File is uploaded to my server with djenkins
- Then logstash takes this file and indexes it
Is it possible?