description: Look up Geo data from IP

GeoIP2 Filter

GeoIP2 Filter allows you to enrich the incoming data stream using location data from GeoIP2 database.

Configuration Parameters

This plugin supports the following configuration parameters:

Key Description
database Path to the GeoIP2 database.
lookup_key Field name to process
record Defines the KEY LOOKUP_KEY VALUE triplet. See below for how to set up this option.

Getting Started

The following configuration will process incoming remote_addr, and append country information retrieved from GeoLite2 database.

  1. [INPUT]
  2. Name dummy
  3. Dummy {"remote_addr": "8.8.8.8"}
  4. [FILTER]
  5. Name geoip2
  6. Match *
  7. Database GeoLite2-City.mmdb
  8. Lookup_key remote_addr
  9. Record country remote_addr %{country.names.en}
  10. Record isocode remote_addr %{country.iso_code}
  11. [OUTPUT]
  12. Name stdout
  13. Match *

Each Record parameter above specifies the following triplet:

  1. The field name to be added to records (country)
  2. The lookup key to process (remote_addr)
  3. The query for GeoIP2 database (%{country.names.en})

By running Fluent Bit with the configuration above, you will see the following output:

  1. {"remote_addr": "8.8.8.8", "country": "United States", "isocode": "US"}

Note that the GeoLite2-City.mmdb database is available from MaxMind’s official site.