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!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...