Overview
You can pipe system and application logs from a DC/OS cluster to your existing Splunk server. This document describes how to configure Fluent Bit to send output from each node to a Splunk installation. This document does not explain how to set up and configure a Splunk server.
These instructions are based on CoreOS and might differ substantially from other Linux distributions.
Prerequisites
- An existing Splunk installation that can ingest data for indexing
- All DC/OS nodes must be able to connect to your Splunk `indexer via HTTP or HTTPS
- 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 Splunk output plugin. For more information on configuring Fluent Bit to send logs to Splunk, see the Fluent Bit documentation.
@INCLUDE /opt/mesosphere/etc/fluent-bit/master.conf
[OUTPUT]
Name splunk
Match *
Host <Splunk server host>
Port <Splunk server port>
Splunk_Token <Splunk HTTP event collector token>
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 agent Fluent Bit config and adds your configuration for the Splunk output plugin. For more information on configuring Fluent Bit to send logs to Splunk, see the Fluent Bit documentation.
@INCLUDE /opt/mesosphere/etc/fluent-bit/agent.conf
[OUTPUT]
Name splunk
Match *
Host <Splunk server host>
Port <Splunk server port>
Splunk_Token <Splunk HTTP event collector token>
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
What’s next
For details on how to filter your logs with Splunk, see Filtering logs with Splunk.