Determine country, city, and long/latitude for an IP address (ipv4 or ipv6). The attributes ip.country, ip.city, ip.lon, ip.lat are added to the event.

LogScale includes GeoLite2 data created by MaxMind. By default, the database is automatically updated if the cluster is running with a valid LogScale license.

In order to use your own MaxMind database, place it in the LogScale data directory as IpLocationDb.mmdb and run LogScale with environment variable AUTO_UPDATE_IP_LOCATION_DB set to false. You must use a database that includes city information (e.g., GeoLite2 City). For more information, see MaxMind Configuration.

Function Traits: Transformation

ParameterTypeRequiredDefaultDescription
asstringoptional  Name the prefix to add to fields added by the ipLocation function. Defaults to . (the name of the field from which to get the IP address).
field[a]stringoptionalip The field from which to get the IP address.

[a] The argument name field can be omitted.

The parameter name for field can be omitted; the following forms are equivalent:

logscale
ipLocation("ip")

and:

logscale
ipLocation(field="ip")

ipLocation() Examples

Based on the field ip, the attributes ip.country, ip.city, ip.lon and ip.lat are added to the event.

logscale
ipLocation()

Based on the field address, the attributes address.country, address.city, address.lon and address.lat are added to the event.

logscale
ipLocation(field=address)

Based on the field ip, the attributes address.country, address.city, address.lon and address.lat are added to the event.

logscale
ipLocation(as=address)