Prior to migration to 7.3, daily indexes were auto created. After migration to 7.3, my first week on 7.3 is in a single index. My logstash output file :
output {
elasticsearch {
hosts => ["logstash-2.xxx.xxx:9200"]
sniffing => true
manage_template => true
index => "logstash-%{+YYYY.MM.dd}"
}
}
The index name now includes id and is
logstash-2019.08.19-000001
From kibana management, the provided name indicates:
"provided_name": "<logstash-{now/d}-000001>"
instead of previous 6.8 entries like:
"provided_name": "logstash-2019.08.06"
Trying to find where the default settings are to config that other than the logstash output file that I indicated above.