假设我在弹性搜索中创建了一个索引并导入数据
PUT test
{
"mappings": {
"orders": {
"properties": {
"devices": {
"type": "integer"
},
"location": {
"type":"geo_point"
},
"time" : {
"type":"date",
"format": "epoch_second"
},
"company" : {
"type":"keyword"
}
}
}
}
}
在 kibana 中相当简单的事情是每月获得唯一的公司数量,这很好,但不足以让许多公司在当月获得第一笔订单。这在 kibana 或 timelion 中可能吗?如果不知道我应该如何将数据保存到弹性中以便我可以得到这个数字?我正在使用 Kibana 5.1.2