Hello,
I'm testing logstash 5.4.2 in my staging env and I've noticed that output of geoip plugins has changes. Instead of GeoJSON output, like I had in 5.4.1
"location": [
-122.3042,
47.913
],
I now get a hash of lat / lon.
"location": {
"lat": 47.913,
"lon": -122.3042
},
My geoip configuration looks like this:
geoip {
source => [ "src_ip" ]
fields => [ "country_code2", "country_name", "latitude", "longitude", "location" ]
}
I looked at release notes and github history and didn't find where this changed.
Is this expected behaviour or did I do something wrong?