Document Not growing because of Template

Hi team,
We are using elasticsearch version 7.0
We have created this template for our indices, but it seems when the template is in place, the document for that index won't grow at all(index stat stopped updating). Once we remove the template, everything back to normal. There is no error in elasticserach and we don't see any message being backlogged from the application side.

PUT _template/template_1
{
  "index_patterns" : ["openshift.*"],
  "settings": {
      "index.mapping.ignore_malformed": true,
      "index.mapping.total_fields.limit": 5000
  }, 
 "mappings" :{...}
}

The index created is shown like this:

Same index shown from Cerebro:

But if I navigate to create index pattern page, there is no such index:

Any help would be deeply appreciated!
Thanks!

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