Splunk Search

How do you run a script on a column search result?

rolivet
New Member

Hi,

I want to run a script on all values in a column like that:

index="myindex" mysearch_filters | table id | script call_script $id

My py script works when I call |script call_script id1 but I want to do it for every values pf id.
I tried a lot of things without success (using foreach, map, ...).
Can someone tell me how to do that ? Or give me some guidelines ?

Thanks.

Rémy

0 Karma

niketn
Legend

@rolivet can you try with a rather expensive map command? Following example will iterate for 10 ids from the table and then run the script for each id:

index="myindex" mysearch_filters 
| table id 
| map search="| script call_script $id$" maxsearches=10
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...