I've a Tile Map visualisation that is throwing a "Expected geo_point type on field [geoip.location], but got [double]" error.
I'm a newbie with the ELK stack.
My geoip json object is like the following:
geoip": {
"ip": "182.2XX.XX.XXX",
"country_code2": "TH",
"country_code3": "THA",
"country_name": "Thailand",
"continent_code": "AS",
"region_name": "40",
"city_name": "Bangkok",
"latitude": 1X.XXXXXXXXXXX999,
"longitude": 1XX.XXXXXXXXXXX999,
"timezone": "Asia/Bangkok",
"real_region_name": "Krung Thep",
"location": [
1XX.XXXXXXXXXXX999,
1X.XXXXXXXXXXX999
]
}
As far as I understand, the geoip.location is an array of two coordinates which I presume it is a geopoint type.
Can someone point me in the right direction? I'm completely lost here.