Hi all,
short question about the Processor.
I am using a processor called monthlyindex, with the following settings:
{
"description": "monthly date-time index naming",
"processors" : [
{
"date_index_name" : {
"field" : "@timestamp",
"index_name_prefix" : "anna-test-index-",
"date_rounding" : "M",
"index_name_format" : "YYYY.MM"
}
}
]
}
I am inserting documents to this a index with Java via:
IndexResponse response = client.prepareIndex("anna-test-index", "test").setSource(insertObject).setId("eins").setPipeline("monthlyindex").get();
As far as I can see the index for this month has been created automatically. But unfortunately I need a special index mapping for this index. Am I able to specify this mapping somehow in the processor? Or how can I do it?
I am using elasticsearch 5.2.2. 
Thanks in advance
Anna
