How to remove .Keywords in kibana

Can someone assist here with how to remove (exclude)these highlighted .keywords in kibana ,thanking in advance.

I guess you are using dynamic mapping while indexing the data into Elasticsearch.

When you set "dynamic":"true", Elasticsearch will map string fields as atextfield with akeywordsubfield. If you are only indexing structured content and not interested in full text search, you can make Elasticsearch map your fields only askeyword fields. However, you must search on the exact same value that was indexed to search those fields.

Hence, you need to explicitly map all your fields to the respective datatype which is required and that will solve your issue.

You can use the below URL to try explicit mapping.

https://www.elastic.co/guide/en/elasticsearch/reference/current/explicit-mapping.html

please do not tag names of persons in different posts like this. This is not the elastic forum etiquette.

I'll reply to you if I can help you out in your post.

Thanks

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