I use Elastic 6.3.2 with Kibana 6.3.2 and am having problems with date type field indexes, since they are not identified as date type fields by Kibana, even though they are indexed as date in Elastic.
The date fields are: created_at and updated_at.
I need some help, please.
Your index mapping is incorrect. The date field is stored as text. Instead, it needs to be stored as a date.
Kibana index patterns do not auto refresh when the underlying elasticsearch index mappings change. You will need to manually refresh the index pattern so the new mappings are used.
Under Management -> index patterns, open your index pattern and click the "refresh field list" button
Thanks, is work.
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.