Splunk Dev

Listing all saved searches using Python SDK

pietervi
Path Finder

Hi,

When doing changes to our splunk infrastructure I want to temporarily disabled all summary indexing searches from certain apps.
I'm trying to do that using the python sdk.

To get started I'm trying to fetch a list of all searches that exist in my Splunk setup.

But somehow when logging in using the sdk I only have access to the searches that the user owns.
See:

service=client.connect(host="localhost",port=8089,username="admin",password="xxx",autologin=True)
for savedsearch in service.saved_searches:
print savedsearch.name

This results in a total of about 6 searches being printed:

Errors in the last 24 hours
Errors in the last hour
Indexing workload
Messages by minute last 3 hours
Splunk errors last 24 hours
Top five sourcetypes

But this list should contain all searches that exist in Splunk.
I assume that it has something to do with the way I'm connecting but I'm not sure.

Thanks in advance,

Pieter

0 Karma
1 Solution

Neeraj_Luthra
Splunk Employee
Splunk Employee

The saved searches you are seeing are scoped to the default app for the user (admin in your case). You can list searches from other apps by specifying the "app" parameter in the connect method. The call would look something like this:

service=client.connect(host="localhost",port=8089,username="admin",password="xxx",app="xxx")

View solution in original post

Neeraj_Luthra
Splunk Employee
Splunk Employee

The saved searches you are seeing are scoped to the default app for the user (admin in your case). You can list searches from other apps by specifying the "app" parameter in the connect method. The call would look something like this:

service=client.connect(host="localhost",port=8089,username="admin",password="xxx",app="xxx")

Neeraj_Luthra
Splunk Employee
Splunk Employee

In the connect method, you can pass app="-" and it will list all saved searches that your user has access to across all apps. Hope this helps.

pietervi
Path Finder

That's what I was thinking as well.
But I was hoping that there was an other way to get all the searches without having to make a connection for every app.

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