Introduction
This guide describes the steps to integrate Splunk with an existing Sensu server.
Integration Steps
List the existing handlers.
sensuctl handler list
Create a TCP handler to send the events to external systems such as Splunk.
sensuctl handler create event-storage --type set --handlers splunk_tcp
Now edit the
event-storage
to save the TCP handler configuration.sensuctl edit handler event-storage
This will open the file in a file editor.
Update the host to
localhost
and port to7758
. Press the “ESC” command and then “SHIFT+:WQ!” to save the file.To list the newly created handler, run the following command.
sensuctl handler list
To list all the checks on the Sensu servers, run the following command.
sensuctl check list
You will see all the checks (
cpu-usage
,disk-usage
and so on.) are added to the email handlers. Now you need to addsplunk_tcp
handler created in Step 2 and 3 so that the events can be sent to the TCP handler.Now edit the check to add
splunk_tcp
handler.sensuctl edit check cpu-usage
Add “
splunk_tcp
” under handlers and save the file.Similarly, edit all the checks and add the
splunk_tcp
handler.You can check locally using Ncat if the events are being sent to port
7758
(if thenc
command is not available, the package can be installed with “#yum install nc
”.nc -v -l -p 7758
You can see the JSON output of the event.
Download and install the Splunk forwarder on the Sensu server to forward the events to Splunk.
wget -O splunkforwarder-8.2.0-e053ef3c985f-linux-2.6-x86_64.rpm 'https://www.splunk.com/bin/splunk/DownloadActivityServlet?architecture=x86_64&platform=linux&version=8.2.0&product=universalforwarder&filename=splunkforwarder-8.2.0-e053ef3c985f-linux-2.6-x86_64.rpm&wget=true'
Create a file called “
inputs.conf
” under “/opt/splunkforwarder/etc/system/local
” directory and add the configuration below.[tcp://:7758] index=sensu [Make sure the index name “sensu” present in Splunk]
Start Splunk forwarder.
/opt/splunkforwarder/bin/splunk start --accept-license
The command above will prompt for username and password, enter the username and password.
Configure forwarder connection to the index server.
/opt/splunkforwarder/bin/splunk add forward-server hostname.domain:7758
Replace the
hostname.domain
name with Splunk index server name or IP, in this example we are using Splunk server with IP52.188.83.113
.NOTE
Make sure port 7758 is opened and added to receive data.
Log in to Splunk and go to Settings.
Under the Data section, select Forwarding and receiving.
Click Receiving data (add new) and enter port 7758 and click Save.
Figure 1: Splunk server
Test the forwarder connection.
/opt/splunkforwarder/bin/splunk list forward-server
Log in to the Splunk console and check if the events are being sent to the index.
Figure 2: Check events in Splunk