All Apps and Add-ons

How can I change the index for data from Splunk Add-on for Unix and Linux

mwcooley
Explorer

Hi,

Data generated from the app is being forwarded with index = "os" but that doesn't exist on our corporate splunk instance. I edited indexes.conf, replacing "os" with the name of my index, and when that didn't work, I edited inputs.conf and added index = "myIndex", but the data still shows up with index = "os".

Here's what the files look like now.

$ cat ~/etc/apps/Splunk_TA_nix/default/indexes.conf
# Copyright (C) 2005-2016 Splunk Inc. All Rights Reserved.
[myIndex]
homePath = $SPLUNK_DB/os/db
coldPath = $SPLUNK_DB/os/colddb
thawedPath = $SPLUNK_DB/os/thaweddb

[firedalerts]
coldPath = $SPLUNK_DB/firedalerts/colddb
homePath = $SPLUNK_DB/firedalerts/db
thawedPath = $SPLUNK_DB/firedalerts/thaweddb

$ cat ~/etc/apps/Splunk_TA_nix/local/inputs.conf
[script://./bin/cpu.sh]
disabled = 0

[script://./bin/df.sh]
disabled = 0

[script://./bin/uptime.sh]
disabled = 0

[script://./bin/vmstat.sh]
disabled = 0

index = myIndex

0 Karma
1 Solution

hardikJsheth
Motivator

You need to add index = myIndex for each input stanza if you want to use index other than default , i.e

[script://./bin/cpu.sh]
disabled = 0
index = myIndex

[script://./bin/df.sh]
disabled = 0
index = myIndex

[script://./bin/uptime.sh]
disabled = 0
index = myIndex

[script://./bin/vmstat.sh]
disabled = 0
index = myIndex

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi,
To correctly address Your inputs, you have to insert index=my_Index in every room of inputs.conf.
In addition, you displayed inputs.conf of local folder, probably there are other rooms in default inputs.conf.
In this case copy these rooms in Local inputs.conf.
Bye.
Giuseppe

0 Karma

hardikJsheth
Motivator

You need to add index = myIndex for each input stanza if you want to use index other than default , i.e

[script://./bin/cpu.sh]
disabled = 0
index = myIndex

[script://./bin/df.sh]
disabled = 0
index = myIndex

[script://./bin/uptime.sh]
disabled = 0
index = myIndex

[script://./bin/vmstat.sh]
disabled = 0
index = myIndex
0 Karma

mwcooley
Explorer

thanks! works like a charm.

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...