Splunk Search

how can I set $SPLUNK_HOME remotely?

asimagu
Builder

Hi guys

I am trying to deploy an app that contains a scripts that uses the variable $SPLUNK_HOME
the issue comes when $SPLUNK_HOME is different on several servers, or even the variable has not been set at all.

is there any way of including the setting of a variable in a script?

any other approaches would also be appreciated

thanks

0 Karma
1 Solution

asimagu
Builder

I think I coded myself something that works for me
By including this in the beginning of my script, it does the magic I expect it to do

SPLUNK_HOME=pwd | sed -n 's/\(.*splunk\).*/\1/p'

View solution in original post

sumangala
Path Finder

$SPLUNK_HOME is splunk environment variable. You can see this /opt/splunk/bin/splunk envvars.
In python script u can get value:
import os
SPLUNK_HOME = os.environ["SPLUNK_HOME"]

0 Karma

asimagu
Builder

I think I coded myself something that works for me
By including this in the beginning of my script, it does the magic I expect it to do

SPLUNK_HOME=pwd | sed -n 's/\(.*splunk\).*/\1/p'

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, ...