创建索引学生并加载json数据。样本json数据:
{
"name": "Daniel",
"joiningdate": "06-28-2018",
"street": "mark street",
"city":"sj"
}
_mapping
{
.....
"properties":{ "joiningdate":{"type":"date","format":"mm-dd-yyyy"}}..
}
在绘制带有计数的timelion图时,它显示为空记录。任何想法
答案 0 :(得分:1)
您的日期格式应为MM-dd-yyyy
,因为mm
代表分钟,而不是几个月。您还需要确保为索引创建索引模式。
"properties":{ "joiningdate":{"type":"date","format":"MM-dd-yyyy"}}..
^
|
change this