Kibana timelion 仪表板
Kibana timelion dashboard
创建了索引学生并加载了 json 数据。示例 json 数据:
{
"name": "Daniel",
"joiningdate": "06-28-2018",
"street": "mark street",
"city":"sj"
}
_mapping
{
.....
"properties":{ "joiningdate":{"type":"date","format":"mm-dd-yyyy"}}..
}
用计数绘制 timelion 图时,它显示空记录。任何想法
您的日期格式应为 MM-dd-yyyy
,因为 mm
代表分钟,而不是月份。您还需要确保为您的索引创建一个索引模式。
"properties":{ "joiningdate":{"type":"date","format":"MM-dd-yyyy"}}..
^
|
change this
创建了索引学生并加载了 json 数据。示例 json 数据:
{
"name": "Daniel",
"joiningdate": "06-28-2018",
"street": "mark street",
"city":"sj"
}
_mapping
{
.....
"properties":{ "joiningdate":{"type":"date","format":"mm-dd-yyyy"}}..
}
用计数绘制 timelion 图时,它显示空记录。任何想法
您的日期格式应为 MM-dd-yyyy
,因为 mm
代表分钟,而不是月份。您还需要确保为您的索引创建一个索引模式。
"properties":{ "joiningdate":{"type":"date","format":"MM-dd-yyyy"}}..
^
|
change this