Sign inSign up

gilbn/docker-mods-geo

By gilbn

Updated almost 6 years ago

Image
0

126

gilbn/docker-mods-geo repository overview

Geoip2Influx - Docker mod for nginx/swag

This mod adds a python script that sends geo location metrics from the nginx access log to InfluxDB

The mod will parse the access log for IPs and and convert them into geo metrics for InfluxDB. It will also send log metrics if enabled.

Add -e DOCKER_MODS=linuxserver/mods:swag-geoip2influx

Enviroment variables:

These are the default values for all envs. Add the ones that differ on your system.

Environment VariableExample ValueDescription
NGINX_LOG_PATH/config/log/nginx/access.logOptional, defaults to the example.
INFLUX_HOSTlocalhostHost running InfluxDB.
INFLUX_HOST_PORT8086Optional, defaults to 8086.
INFLUX_DATABASEgeoip2influxOptional, defaults to geoip2influx.
INFLUX_USERrootOptional, defaults to root.
INFLUX_PASSrootOptional, defaults to root.
GEO_MEASUREMENTgeoip2influxOptional, InfluxDB measurement name for geohashes. Defaults to the example.
LOG_MEASUREMENTnginx_access_logsOptional, InfluxDB measurement name for nginx logs. Defaults to the example.
SEND_NGINX_LOGStrueOptional, set to false to disable nginx logs. Defaults to true.
GEOIP2INFLUX_LOG_LEVELinfoOptional. Sets the log level in geoip2influx.log. Use debug for verbose logging Optional, defaults to info.
INFLUX_RETENTION7dOptional. Sets the retention for the database. Defaults to example.
INFLUX_SHARD1dOptional. Set the shard for the database. Defaults to example.
MAXMINDDB_LICENSE_KEYxxxxxxxAdd your Maxmind licence key

MaxMind Geolite2

Default download location is /config/geoip2db/GeoLite2-City.mmdb

Get your licence key here: https://www.maxmind.com/en/geolite2/signup

InfluxDB

The InfluxDB database will be created automatically with the name you choose.


Grafana dashboard:


Sending Nginx log metrics

  1. Add the following to the http block in your nginx.conffile:
geoip2 /config/geoip2db/GeoLite2-City.mmdb {
auto_reload 5m;
$geoip2_data_country_code country iso_code;
$geoip2_data_city_name city names en;
}

log_format geoip2influx '$remote_addr - $remote_user [$time_local]'
           '"$request" $status $body_bytes_sent'
           '"$http_referer" $host "$http_user_agent"'
           '"$request_time" "$upstream_connect_time"'
           '"$geoip2_data_city_name" "$geoip2_data_country_code"';
  1. Set the access log use the geoip2influx log format.
access_log /config/log/nginx/access.log geoip2influx;
Multiple log files

If you separate your nginx log files but want this mod to parse all of them you can do the following:

As nginx can have multiple access log directives in a block, just add another one in the server block.

Example

	access_log /config/log/nginx/technicalramblings/access.log;
	access_log /config/log/nginx/access.log geoip2influx;

This will log the same lines to both files.

Then use the /config/log/nginx/access.log file in the NGINX_LOG_PATH variable.

Tag summary

Content type

Image

Digest

Size

4.5 kB

Last updated

almost 6 years ago

docker pull gilbn/docker-mods-geo