Geoip filter plugin missing geohash field

Hi,
after upgrading to logstash-filter-geoip (4.2.1) there isn't the geo_point -> [geoip][location] field anymore.
Only the two fields [geoip][location][lat] and [geoip][location][lon] are created.

I am using the default logstash template and index name is logstash-*.

Is that a bug?

Ok - problem solved.

I edited the the mapping off my template:

"geoip" : { "dynamic": true, "properties" : { "ip": { "type": "ip" }, "location" : { "type" : "geo_point" }, "latitude" : { "type" : "half_float" }, "longitude" : { "type" : "half_float" } } }

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.