Hello, after migration to the 8.12.1 I've started getting error "Badly formatted index, after interpolation still contains placeholder". When I'm trying to process report with Filebeat. More interesting is I get this message on one type of reports and for the other it works..
This means that the field that you are using in your index name does not exist in the event.
For example, you have this as your index name test-report-%{[PK]}, so it will get the value of the field PK and replace it, but if the field PK does not exist in your document, this value will not be replaced and you will get this error.
You need to check your grok if it is really working.
Alternatively you can add this filter to populate the PK field in case it does not exist and you can validate what was the issue.
Then if the field PK does not exist in the document, it will be created with the value no-pk and your index in this case will be named test-report-no-pk.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.