You can pipe system and application logs from the nodes in a DC/OS cluster to an Elasticsearch server.
What this document does and does not cover
This document describes how to send Fluent Bit output from each node to a centralized Elasticsearch instance. This document describes how to directly stream from Fluent Bit into Elasticsearch. Logstash is not used in this architecture. If you are interested in filtering, parsing and understanding the logs with an intermediate Logstash stage, see the Logstash documentation and the example in Filtering logs with ELK.
This document does not explain how to set up and configure an Elasticsearch server. This document does not describe how to set up secure TLS communication between the Fluent Bit instances and Elasticsearch. For details on how to achieve this, see the Fluent Bit and Elasticsearch documentation.
Prerequisites
- An existing Elasticsearch installation that can ingest data for indexing
- All DC/OS nodes must be able to connect to your Elasticsearch server on the port used for communication between Elasticsearch and Fluent Bit (9200 by default)
- A location on each DC/OS node for your custom Fluent Bit config. This tutorial will use
/etc/fluent-bit/
.
Step 1: Master nodes
For each master node in your DC/OS cluster, create a file /etc/fluent-bit/fluent-bit.conf
that includes the default master Fluent Bit config and adds your configuration for the Elasticsearch output plugin. For more information on configuring Fluent Bit to send logs to Elasticsearch, see the Fluent Bit documentation.
@INCLUDE /opt/mesosphere/etc/fluent-bit/master.conf
[OUTPUT]
Name es
Match *
Host <Elasticsearch host>
Port <Elasticsearch port>
Step 2: Agent nodes
For each agent node in your DC/OS cluster, create a file /etc/fluent-bit/fluent-bit.conf
that includes the default master Fluent Bit config and adds your configuration for the Elasticsearch output plugin. For more information on configuring Fluent Bit to send logs to Elasticsearch, see the Fluent Bit documentation.
@INCLUDE /opt/mesosphere/etc/fluent-bit/agent.conf
[OUTPUT]
Name es
Match *
Host <Elasticsearch host>
Port <Elasticsearch port>
Step 3: All nodes
For all nodes in your DC/OS cluster:
- Create a file
/etc/fluent-bit/fluent-bit.env
that sets theFLUENT_BIT_CONFIG_FILE
environment variable to the location of your Fluent Bit config:
FLUENT_BIT_CONFIG_FILE=/etc/fluent-bit/fluent-bit.conf
- Create a directory
/etc/systemd/system/dcos-fluent-bit.service.d
:
sudo mkdir -p /etc/systemd/system/dcos-fluent-bit.service.d
- Create a file
/etc/systemd/system/dcos-fluent-bit.service.d/override.conf
that applies your custom config to Fluent Bit:
[Service]
EnvironmentFile=/etc/fluent-bit/fluent-bit.env
- Reload systemd to update
dcos-fluent-bit.service
, and restart it:
sudo systemctl daemon-reload
sudo systemctl restart dcos-fluent-bit.service
Get more details
For details on how to filter your logs with ELK, see Filtering DC/OS logs with ELK.