diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:27:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:27:18 +0000 |
commit | f7f20c3f5e0be02585741f5f54d198689ccd7866 (patch) | |
tree | 190d5e080f6cbcc40560b0ceaccfd883cb3faa01 /source/configuration/modules/mmdblookup.rst | |
parent | Initial commit. (diff) | |
download | rsyslog-doc-f7f20c3f5e0be02585741f5f54d198689ccd7866.tar.xz rsyslog-doc-f7f20c3f5e0be02585741f5f54d198689ccd7866.zip |
Adding upstream version 8.2402.0+dfsg.upstream/8.2402.0+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | source/configuration/modules/mmdblookup.rst | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/source/configuration/modules/mmdblookup.rst b/source/configuration/modules/mmdblookup.rst new file mode 100644 index 0000000..d92f849 --- /dev/null +++ b/source/configuration/modules/mmdblookup.rst @@ -0,0 +1,141 @@ +.. index:: ! mmdblookup + +************************************ +MaxMind/GeoIP DB lookup (mmdblookup) +************************************ + +================ ================================== +**Module Name:** mmdblookup +**Author:** `chenryn <rao.chenlin@gmail.com>`_ +**Available:** 8.24+ +================ ================================== + + +Purpose +======= + +MaxMindDB is the new file format for storing information about IP addresses +in a highly optimized, flexible database format. GeoIP2 Databases are +available in the MaxMind DB format. + +Plugin author claimed a MaxMindDB vs GeoIP speed around 4 to 6 times. + + +How to build the module +======================= + +To compile Rsyslog with mmdblookup you'll need to: + +* install *libmaxminddb-devel* package +* set *--enable-mmdblookup* on configure + + +Configuration Parameter +======================= + +.. note:: + + Parameter names are case-insensitive. + + +Module Parameters +----------------- + +container +^^^^^^^^^ + +.. csv-table:: + :header: "type", "default", "mandatory", "|FmtObsoleteName| directive" + :widths: auto + :class: parameter-table + + "word", "!iplocation", "no", "none" + +.. versionadded:: 8.28.0 + +Specifies the container to be used to store the fields amended by +mmdblookup. + + +Input Parameters +---------------- + +key +^^^ + +.. csv-table:: + :header: "type", "default", "mandatory", "|FmtObsoleteName| directive" + :widths: auto + :class: parameter-table + + "word", "none", "yes", "none" + +Name of field containing IP address. + + +mmdbfile +^^^^^^^^ + +.. csv-table:: + :header: "type", "default", "mandatory", "|FmtObsoleteName| directive" + :widths: auto + :class: parameter-table + + "word", "none", "yes", "none" + +Location of Maxmind DB file. + + +fields +^^^^^^ + +.. csv-table:: + :header: "type", "default", "mandatory", "|FmtObsoleteName| directive" + :widths: auto + :class: parameter-table + + "array", "none", "yes", "none" + +Fields that will be appended to processed message. The fields will +always be appended in the container used by mmdblookup (which may be +overridden by the "container" parameter on module load). + +By default, the maxmindb field name is used for variables. This can +be overridden by specifying a custom name between colons at the +beginning of the field name. As usual, bang signs denote path levels. +So for example, if you want to extract "!city!names!en" but rename it +to "cityname", you can use ":cityname:!city!names!en" as field name. + + +Examples +======== + +Minimum configuration +--------------------- + +This example shows the minimum configuration. + +.. code-block:: none + + # load module + module( load="mmdblookup" ) + + action( type="mmdblookup" mmdbfile="/etc/rsyslog.d/GeoLite2-City.mmdb" + fields=["!continent!code","!location"] key="!clientip" ) + + +Custom container and field name +------------------------------- + +The following example uses a custom container and custom field name + +.. code-block:: none + + # load module + module( load="mmdblookup" container="!geo_ip") + + action( type="mmdblookup" mmdbfile="/etc/rsyslog.d/GeoLite2-City.mmdb" + fields=[":continent:!continent!code", ":loc:!location"] + key="!clientip") + + |