Im using logstash 6.7 and when trying to create an index i receive the following error in the logs;
'strict_dynamic_mapping_exception'. mapping set to strict, dynamic introduction of [dof] within [doc] is not allowed"
my elasticsearch output is
output {
elasticsearch {
hosts => ["http://localhost:9200"]
index => "eventlogs-%{+xxxx.ww}"
}
how do i set the mapping to dynamic through log stash as it will be creating new indexes on weekly basis? It was working a couple of days ago without receiving the mapping error. Thanks