Index update

I have this output plugin in Logstash to create elastic search index.

output {
    amazon_es {
       hosts => ["https://xxxxxxxxxxxxxxxx.es.amazonaws.com/"]
       region => "ap-southeast-1"
       index => "studentservice-logs-%{+YYYY.MM.dd}"
   }
}

I want to update this index later because there will be some new fields added by mutate for some log messages.

How to update the index ?

Update how? With a separate batch processing job? Or do you want to make a part of the Elastic Stack do something for you?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.