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!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...