我有一个python应用程序让我们假设我想从我的应用程序发送到ELK堆栈流量数据,以便使用kibana地图图块在地图中可视化我的流量。
我的代码是:
es = ElasticSearch(hosts=["here is my host"])
doc = {
'timestamp': datetime.now(),
"text": "Geo-point as an object",
"location": {
"lat": 41.12,
"lon": -71.34
}
}
res = es.index(index="test", doc_type='request-info', body=doc)
不幸的是,虽然Kibana不认识它是一个地理位置,所以我无法在地图上创建任何可视化。具体而言,它返回"The "index name" index pattern does not contain any of the following field types: geo_point"
的错误。
我应该如何实施这样的事情,有没有人对此有任何想法?
提前致谢
ps:我使用这个python lib https://elasticsearch-py.readthedocs.io/
答案 0 :(得分:3)
您需要先创建mapping。 位置被视为字符串类型,而不是geo_point类型。
尝试以下代码
es = ElasticSearch(hosts=["here is my host"])
mapping = {
"mappings": {
"request-info": {
"properties": {
"timestamp": {
"type": "date"
},
"text": {
"type": "string"
},
"location": {
"type": "geo_point"
}
}
}
}
}
es.indices.create(index='test', body=mapping)
doc = {
'timestamp': datetime.now(),
"text": "Geo-point as an object",
"location": {
"lat": 41.12,
"lon": -71.34
}
}
res = es.index(index="test", doc_type='request-info', body=doc)