Hello everyone,
As I am trying to populate area chart with my date fields.
It is not working in kibana, when i check with elasticsearch query its working there.
My elasticsearch query :
which is showing results in kibana console.
Below is my mapping:
PUT test1
{
"settings": {
"index.mapping.ignore_malformed": true
},
"mappings": {
"each_file": {
"properties": {
"Size": {"type": "integer","ignore_malformed": false },
"Path ID": {"type": "integer","ignore_malformed": false },
"Family Item Number": {"type": "integer","ignore_malformed": false },
"Creation Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"},
"Document Creation Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"},
"Document Modification Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"},
"Email Received Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"},
"Email Sent Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"},
"Modification Time": {"type": "date", "format": "E dd MMM yyyy HH:mm:ss a z"}
}
}
}
}
and my date format : Document Creation Time : Fri 02 Nov 2001 06:28:37 AM IST
I dont know how to show chart in kibana?
Thanks for help.






