Skip to content
This repository was archived by the owner on Apr 16, 2021. It is now read-only.

Elasticsearch

weslambert edited this page Oct 4, 2017 · 45 revisions

We are currently working on integrating the Elastic stack!

Description

From: https://www.elastic.co/products/elasticsearch

Elasticsearch is a distributed, RESTful search and analytics engine capable of solving a growing number of use cases. As the heart of the Elastic Stack, it centrally stores your data so you can discover the expected and uncover the unexpected.

Configuration

  • Configuration files for Elasticsearch can be found in /etc/elasticsearch/.

  • Other configuration options for Elasticsearch can be found in /etc/nsm/securityonion.conf.

  • By default, if total available memory is 8GB or greater, ELASTICSEARCH_HEAP in /etc/nsm/securityonion.conf is configured (during setup) to equal 25% of available memory, but no greater than 31GB.

    See https://www.elastic.co/guide/en/elasticsearch/guide/current/heap-sizing.html#compressed_oops for more details.

    You may need to adjust the value for ELASTICSEARCH_HEAP depending on your system's performance (running sudo so-elastic-restart after).

  • Elasticsearch logs can be found in /var/log/elasticsearch/.

  • Logging configuration can be found in /etc/elasticsearch/log4j2.properties.

Distributed

Security Onion implements distributed deployments using Elasticsearch's cross cluster search. When you run Setup and choose Sensor, it will create a local Elasticsearch instance and then configure the master server to query that instance (similar to ELSA distributed deployments). This is done by constructing an autossh tunnel from the sensor to the master server, configuring reverse port forwarding to allow the master server to connect to the local Elasticsearch instance, and updating _cluster/settings on the master server so that it will query the local Elasticsearch instance.

Removing a sensor

If you need to remove a sensor from your cross cluster search configuration, send the following to Elasticsearch on your master server (replacing "sensor2" with the actual sensor you'd like to remove and noting that null must be in square brackets):

PUT _cluster/settings
{
"persistent": {
"search": {
"remote": {
"sensor2": {
"seeds": [null]
}
}
}
}
}

You can simply copy/paste the above code (modifying as necessary) into the Console, under "Dev Tools" in Kibana, and click the green triangle. Alternatively, you could submit it to Elasticsearch via a cURL command.

Storage

All of the data Elasticsearch collects is stored under /nsm/elasticsearch/.

Clone this wiki locally