@Tomcat7
Hello,
Just chiming in, I have successfully start and configured GeoIP from this documention below.
I’m not sure if you followed those instruction but I noticed you had some different configurations.
Your pipeline
rule “GeoIP lookup: remote_addr”
when
has_field (“remote_addr”)
then
let geo = lookup (“geoip”, to_string ($ message.remote_addr));
set_field (“remote_addr_geo_location”, geo [“coordinates”]);
set_field (“remote_addr_geo_country”, geo [“country”]. iso_code);
set_field (“remote_addr_geo_city”, geo [“city”]. names.en);
end
Here is a visual on my configuration.
Hope that helps.