When creating a new visualization using geohash aggregation, I get the following error:
"Courier fetch: 5 of 10 shards failed."
Monitoring the elasticsearch log when performing this action, I get the following line:
"org.elasticsearch.index.query.QueryShardException: failed to find geo_point field [geoip.location]"
The weird thing: the map displays the circles correctly according to the data - derived from the ipaddress.
Here's my configuration:
On the logstash filter section:
geoip {
source => "ip_address"
}
Checking the document mapping:
"ip": {
"type": "ip"
},
"latitude": {
"type": "half_float"
},
"location": {
"type": "geo_point"
},
"longitude": {
"type": "half_float"
},
Checking the ingested data:
geoip.location {
"lon": -122.3422,
"lat": 47.6344
}
Since I can see the correct map, I would assume this kind of error should not occur. Any idea?
Thanks.