Splunk Dev

Can I get the current app from Python?

timpgray
Path Finder

I notice there is a method to get the current apps dir from python. There is also a getCurrentApp() available in javascript, but I need the current app from Python.

Does anyone have any suggestions?

Tags (2)
1 Solution

araitz
Splunk Employee
Splunk Employee

Which type of python file? We tend to use python's __file__ attribute. I assume that you have imported os and cherrypy at least.

For example, in the file $SPLUNK_HOME/etc/apps/TA-opseclea/appserver/controllers/:

 app_name = __file__.split('.')[-2]

If I was implementing a controller method where a request was routed to me:

@route('/:app/:action=edit/:name')
@expose_page(must_login=True, methods=['GET']) 
def edit(self, app, action, name, **kwargs):
    host_app = cherrypy.request.path_info.split('/')[3]

For a scripted input in an app's .\bin directory:

app_name = __file__.split(os.sep)[-3]

View solution in original post

0 Karma

araitz
Splunk Employee
Splunk Employee

Which type of python file? We tend to use python's __file__ attribute. I assume that you have imported os and cherrypy at least.

For example, in the file $SPLUNK_HOME/etc/apps/TA-opseclea/appserver/controllers/:

 app_name = __file__.split('.')[-2]

If I was implementing a controller method where a request was routed to me:

@route('/:app/:action=edit/:name')
@expose_page(must_login=True, methods=['GET']) 
def edit(self, app, action, name, **kwargs):
    host_app = cherrypy.request.path_info.split('/')[3]

For a scripted input in an app's .\bin directory:

app_name = __file__.split(os.sep)[-3]
0 Karma

timpgray
Path Finder

I am writing a custom search command. Looks like the last option you presented may be the one. I will give it a shot. Thanks

0 Karma
Get Updates on the Splunk Community!

Updated Data Type Articles, Anniversary Celebrations, and More on Splunk Lantern

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

A Prelude to .conf25: Your Guide to Splunk University

Heading to Boston this September for .conf25? Get a jumpstart by arriving a few days early for Splunk ...

4 Ways the Splunk Community Helps You Prepare for .conf25

.conf25 is right around the corner, and whether you’re a first-time attendee or a seasoned Splunker, the ...