Splunk Search

How to format subsearch to give results with OR operator between and dropping field names.

ankithreddy777
Contributor

I have a scenario where my subsearch should yield results in following format.
Index=index1 [search index=index2 earliest=10 days /table productId]

My productid valies are
ProductId= value1
ProductId=value2 etc

Should yeild
Index=index1 (value 1 ) OR (value2).....

May I know what is tbe best approach.How can I just return values

Tags (1)
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

Hi ankithreddy777,

Have you tried below search?

index=index1 [search index=index2 earliest=10d | dedup productId | return 10000 $productId]

Here I have used return command. For more info please check below URL.

https://docs.splunk.com/Documentation/Splunk/6.5.3/SearchReference/Return

I have used 10000 as head parameter to limit product Ids.

Thanks
Kamlesh

0 Karma

rjthibod
Champion

There are two ways: 1) let the subsearch simply return with a column of the productid field, or 2) use the format command to make the exact search string.

The first option is generally better, but there are some situations where the second option is needed.

First option: index=index1 [search index=index2 earliest=-10d@d | stats count by productId | fields + productid]

Second option: index=index1 [search index=index2 earliest=-10d@d | stats count by productId | fields productid | format]

0 Karma
Get Updates on the Splunk Community!

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...