Splunk Search

How to run a search from rest search?

aohls
Contributor

I am doing some analysis on our existing searches. What I would like to do is run the saved search when I get the result from a rest search. Right now I have the following, which was working at one point but not sure why it isn't now.

 

 

|rest /servicesns/-/-/saved/searches | where title = "test" | fields search | map search="|makeresult | map search="$search$""

 

 

I have used this before and it was working but some reason now it is not but I can't tell why. Right now I am just running it in a search not in a dashboard. 

Labels (1)
Tags (3)
0 Karma

woodcock
Esteemed Legend

Your search makes no sense to be but it had 2 typos:  Here is the repaired/functional fix:
|rest /servicesNS/-/-/saved/searches | where title = "test" | fields search | map search="|makeresults | map search="$search$""

Now, if you have problems running it in a dahsboard it is because the "$search$ should be "$$search$$" in a dashboard.

0 Karma

yeahnah
Motivator

Hi @aohls 

As it's a saved search already so you are probably better simply loading and running the saved search instead of using the search contents in the map command.  Depending on the complexity of the SPL, using search may just cause issue.

So something like this...

| rest splunk_server=local /servicesNS/-/-/saved/searches
| fields title search
| where title = "test"
| map search="| savedsearch \"$title$\""

 
Hope it helps

0 Karma
Get Updates on the Splunk Community!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...