Hi,
i'm trying to use "geoip" module on a destination.ip.
My logstash code is :
if [destination.ip] {
geoip {
source => "destination.ip"
target => "destination.geo"
}
}
Geoip is working (almost fine), I have new fields in the Elastic output but no geopoint. I can see "destination.geo.location.lat" and "destination.geo.location.lon" as number field but no "destination.geo.location" whereas it is defined in my index template (see image)
Am I missing something ?
Thanks for help