Splunk Enterprise

Searching from a specific app on splunk server using python sdk

neilgupte75
New Member

Hey I am new to splunk and wanted to know how to carry out searches from inside a specific app through python sdk.

My search query is for a specific app and does not produce any results if I search it in global search and reporting.

I have established the connection with the server but as the query needs to be searched from inside a specific app I am not able to get any results.

Help will be appreciated.

Is there an app parameter which is required while connecting to the server 

 

 

My connection code is 

import splunklib.client as client

HOST = "hostname"
PORT = "8089"
USERNAME = "uname"
PASSWORD = "passwd"


# Create a Service instance and log in
service = client.connect(
host=HOST,
port=PORT,
username=USERNAME,
password=PASSWORD
)

# Print installed apps to the console to verify login
for app in service.apps:
print (app.name)

kwargs_export = {"earliest_time": "-1h",
"latest_time": "now",
"search_mode": "normal"}
searchquery_export = 'myquery'
exportsearch_results = service.jobs.export(searchquery_export, **kwargs_export)

# Get the results and display them using the ResultsReader
reader = results.ResultsReader(exportsearch_results)
for result in reader:
if isinstance(result, dict😞
print ("Result: %s" % result)
elif isinstance(result, results.Message):
# Diagnostic messages may be returned in the results
print("Message: %s" % result)

# Print whether results are a preview from a running search
print ("is_preview = %s " % reader.is_preview)
Labels (2)
Tags (2)
0 Karma
Get Updates on the Splunk Community!

Leveraging Detections from the Splunk Threat Research Team & Cisco Talos

  Now On Demand  Stay ahead of today’s evolving threats with the combined power of the Splunk Threat Research ...

New in Splunk Observability Cloud: Automated Archiving for Unused Metrics

Automated Archival is a new capability within Metrics Management; which is a robust usage & cost optimization ...

Calling All Security Pros: Ready to Race Through Boston?

Hey Splunkers, .conf25 is heading to Boston and we’re kicking things off with something bold, competitive, and ...