Splunk Search

How to get field values from search result using python script

ronak
Path Finder

My test script

splunk.auth.getSessionKey('admin','admin')
my_job = splunk.search.dispatch('search index=* source = orders.csv')
i = 0
for result in my_job.results:
result0 = my_job.results[i]
print i
i=i+1
print result0.fields

print result0['payment_type']

print result0.time

print result0.payment_type

Pl see attached two files - one has output of the print result0.fields and other is output of how the events look on search screen of Splunk (to indicate that there are many custom fields like payment_type, service_type etc alt text

Need

How do I print the content of the field payment_type or service_type ...I don't see them coming in when I print result0.fields.

Tags (4)
0 Karma

Flynt
Splunk Employee
Splunk Employee

Try adding |table * at the end of your search, this should allow any custom extracted fields to be displayed in your field output.

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