Getting Data In

How to assign a Splunk status result to a variable in a script?

saifuddin9122
Path Finder

hello

I am working on a script for running Splunk.

I want to check status of Splunk and assign the result of the status to a variable for further use.
Can any one please help me with this?

0 Karma
1 Solution

somesoni2
Revered Legend

You can run following command and capture the output in a variable.
Shell script example

status=$($SPLUNK_HOME/bin/splunk status | grep not | wc -l )

If status=0, Splunk is up, down otherwise (1). Replace $SPLUNK_HOME with your installation path.

View solution in original post

somesoni2
Revered Legend

You can run following command and capture the output in a variable.
Shell script example

status=$($SPLUNK_HOME/bin/splunk status | grep not | wc -l )

If status=0, Splunk is up, down otherwise (1). Replace $SPLUNK_HOME with your installation path.

saifuddin9122
Path Finder

Thanks for your reply. it is working

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