Hi,
When I try to create a visualization -> coordinated map by using geoip i'm getting below error
"The index pattern <INDEX_NAME>* does not contain any of the following compatible field types: geo_point"
But I'm getting below json out put in Kibana.
"geoip": {
"continent_code": "NA",
"country_code3": "US",
"country_name": "United States",
"longitude": -97.822,
"location": {
"lon": -97.822,
"lat": 37.751
},
"timezone": "America/Chicago",
"latitude": 37.751,
"country_code2": "US",
"ip": "104.75.84.8"
},
Also when check the Kibana -> DevTools -> GET /_template/logstash* I'm getting below
"geoip" : {
"dynamic" : true,
"properties" : {
"ip" : {
"type" : "ip"
},
"latitude" : {
"type" : "half_float"
},
"location" : {
"type" : "geo_point"
},
"longitude" : {
"type" : "half_float"
}
}
}
As per the documentation I should be able to create a Coordinated map. But I'm getting above mentioned error. Can some one help me to sort this?
Thanks in advance!