I started working on an existing ELK installation. I see that it has rollover option daily. The logs are written to the logstash-* indices, rolling over daily, like this index name - logstash-2018.05.09.
I am trying to identify where this setting is applied.
I can see that it is not applied in the conf file. This is the output conf -
output {
elasticsearch { hosts => "localhost:9200" }
}
Notice that the index is not specified. I can see that the indexes do not have an alias either. There is no alias in the template "logstash-*".
I also checked the curator and cannot see any rollover settings there.
Is this rollover happening by default? What steps can i take to troubleshoot and identify the rollover settings in this ELK installation? Thanks.