Elastic Search Importer (evebox elastic-import)¶
The EveBox “elastic-import” command can be used to import eve log files directly into Elastic Search. For most basic use cases it can be used as an alternative to Filebeat and/or Logstash.
EveBox “elastic-import” features:
- Continuous (tail -f style) reading of eve log files.
- Bookmarking of reads so reading can continue where it stopped during a restart.
- GeoIP lookups using the MaxMind GeoLite2 database if provided by the user.
- HTTP user agent parsing.
- One shot imports to send an eve log file to Elastic Search once.
Logstash Compatibility¶
EveBox elastic-import is fully compatible with Logstash and can be used in a mixed environment where some eve logs are being handled by Logstash and others by elastic-import. In this case you will want to use the –index option to set the index the same that Logstash is importing to.
Elastic Search Compatible¶
EveBox elastic-import can be used with Elastic Search version 2 and 5. If the configured index does not exist, elastic-import will create a Logstash 2 style template for Elastic Search v2.x and a Logstash 5 style template for Elastic Search v5.x to maintain compatibility with eve events imported with Logstash.
Example Usage¶
Oneshot Import of an Eve Log File¶
The following example will send a complete eve.json to Elastic Search and exit when done:
evebox elastic-import --elasticsearch http://10.16.1.10:9200 \
--index logstash --oneshot -v /var/log/suricata/eve.json
Continuous Import¶
This example will run elastic-import in continuous mode sending events to Elastic Search as they appear in the log file. The last read location will also be bookmarked so elastic-import can continue where it left off after a restart. For many use cases this can be used instead of Filebeat and/or Logstash.
./evebox elastic-import --elasticsearch http://10.16.1.10:9200 \
--index logstash \
--bookmark --bookmark-filename /var/tmp/eve.json.bookmark -v \
/var/log/suricata/eve.json
If using elastic-import in this way you may want to create a configuration named elastic-import.yaml like:
input: /var/log/suricata/eve.json
elasticsearch: http://10.16.1.10:9200
index: logstash
bookmark: true
bookmark-filename: /var/tmp/eve.json.bookmark
Then run elastic-import like:
./evebox elastic-import -c elastic-import.yaml -v
GeoIP¶
While EveBox elastic-import can do geoip lookups it does not include a geoip database. The only supported database is the MaxMind GeoLite2 database, see http://dev.maxmind.com/geoip/geoip2/geolite2/ for more information.
Note
Many Linux distributions that have a geoip database package use the old format of the database, not the current version supported by MaxMind.
While the –geoip-database option can be used to point elastic-import at the datbase, the following paths will be checked automatically, in order:
- /etc/evebox/GeoLite2-City.mmdb.gz
- /etc/evebox/GeoLite2-City.mmdb
- /usr/local/share/GeoIP/GeoLite2-City.mmdb
- /usr/share/GeoIP/GeoLite2-City.mmdb
Note
MaxMind provides their own program to update the databases. See http://dev.maxmind.com/geoip/geoipupdate/
GeoIP Quickstart¶
If you just want to get quickly started with GeoIP you can download the database to a path that elastic-import will automatically detect, for example:
mkdir -p /etc/evebox
cd /etc/evebox
curl -OL http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz
Command Line Options¶
-
--bookmark
¶
Enable bookmarking of the input files. With bookmarking, the last read location will be remember over restarts of elastic-import.
-
--bookmark-dir
DIRECTORY
¶ Use the provided directory for bookmarks. Bookmark files will take the filename of the md5 of the input filename suffixed with .bookmark.
This option is required if –bookmark is used with multiple inputs but may also be used with a single input.
-
--bookmark-filename
FILENAME
¶ Use the provided filename as the bookmark file. This option is only valid if a single input file is used.
-
--index
INDEX
¶ The Elastic Search index prefix to add events to. The default is logstash to be compatible with Logstash.
Note
Previous version of elastic-import used a default index of evebox.
Configuration File¶
The elastic-import command can use a YAML configuration file covering most of the command line arguments.
# The eve log files to read.
input:
- /var/log/suricata/eve.json
# Elastic Search URL
elasticsearch: http://10.16.1.10:9200
# Elastic Search username and password.
#username: admin
#password: password
# Elastic Search index. -%{YYYY.MM.DD) will be appended, so this is just the
# prefix.
index: logstash
# For loading the EveBox template (Logstash compatible) into
# Elasticsearch. It is recommended to turn this option on if only
# using EveBox to add events to Elasticsearch. Leave disabled if
# already using Logstash or Filebeat on the same index.
#
# Default: false
#force-template: false
# Disable TLS certificate check.
#disable-certificate-check: true
# When no bookmark is present start reading at the end of the file.
end: true
# Enable bookmarking so esimport can continue reading from where it
# left off after a restart.
bookmark: true
# Set a filename to keep the bookmark in case esimport cannot write to
# the log directory.
#bookmark-filename: /var/tmp/eve.json.bookmark
# If reading from multiple eve files, a bookmark directory is
# required.
#bookmark-dir: /var/tmp/bookmarks
# Change the amount of events to batch per bulk request.
#batch-size: 1000
geoip:
# GeoIP is enabled by default if a database can be found.
disabled: false
# Path to the database, if not set some standard locations are
# checked.
#
# The database used is the MaxMind GeoLite2 database. See:
# http://dev.maxmind.com/geoip/geoip2/geolite2/
# Quick setup:
# cd /etc/evebox
# curl -OL http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz
#
#database-filename: /etc/evebox/GeoLite2-City.mmdb.gz
#database-filename: /etc/evebox/GeoLite2-City.mmdb