Geo_point属性(时间戳)未显示在工具提示中

时间:2020-01-22 13:49:44

标签: kibana elasticsearch-5

我是Elastic Maps的新手。我有3维的多个geo_points,即lat,lon和timestamp。我想在地图和时间戳中绘制坐标以显示在工具提示中。不知何故,我无法在工具提示中获得时间戳。我不知道想要是错的。请帮助

弹性版:7.5.1 Kibana版本:7.5.1

弹性映射:

 "route": {
        "properties": {
            "coords": {
                "type": "geo_point"
            },
            "timestamp": {
                "type": "text",
                "fields": {
                    "keyword": {
                        "type": "keyword",
                        "ignore_above": 256
                    }
                }
            }
        }
    }

样本数据

{
    "route": [
    {
        "coords": [
            132.35673166666666,
            34.381421666666675
        ],
        "timestamp": "1574058343449148"
    },
    {
        "coords": [
            132.35688,
            34.38138
        ],
        "timestamp": "1574058344444382"
    },
    {
        "coords": [
            132.35702833333335,
            34.38133666666667
        ],
        "timestamp": "1574058345443957"
    }
    ]
}

enter image description here

0 个答案:

没有答案