日期格式在kibana的日期直方图中不起作用

时间:2018-12-20 08:52:50

标签: elasticsearch kibana

我正在尝试用日期字段填充面积图。 它在kibana中不起作用,当我检查Elasticsearch查询时,它在那儿工作。

enter image description here

它可以在ElasticSearch查询中使用。

enter image description here

我的映射如下:

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"}
}
}
}
} 

我的日期格式:文档创建时间:2001年11月2日(星期五)IST

我们将不胜感激。

谢谢。

1 个答案:

答案 0 :(得分:0)

看起来_ignored字段的格式错误,因为它出现在搜索查询响应中的setVector下。您已在索引映射中将忽略格式错误的字段设置设置为true。