Splunk Search

How to customize our search results using subsearches?

splunker9999
Path Finder

Hi SPlunkers,

We are looking customize our searches by using subsearches.

Search 1:

index=db source="Queue.Depth"|head 1 | stats values(Current_Depth)  -- This gives current queue depth in our MQ

Search 2:

index=db source="Queue.OldestMessageAge" |head 1|stats values(Oldest_Message_Age) as "Oldest_Message_Age_in_mins" -- This query gives us Oldest message Age in our MQ

At the moment, we have some issues with db and sometimes data is not updating. Due to this, we are getting inaccurate results.

So, we are looking for a search using the above 2 searches. Whenever current queue depth (Search 1) in our MQ is "zero", then "Oldest Message Age" (Search 2) should be "Zero".

Can some one please help us?

THanks

0 Karma

ppablo
Retired

Hi @splunker9999

Glad to see you found two working solutions through @woodcock and @somesoni2. Please be sure to resolve the post by clicking "Accept" directly below the answer that you decided to go with, and upvote them both for helping you out.

0 Karma

woodcock
Esteemed Legend

Like this:

| noop | stats count AS Oldest_Message_Age_in_mins
| eval Oldest_Message_Age_in_mins=if(([index=db source="Queue.Depth" | head 1 | return $Current_Depth] = 0), 0, [index=db source="Queue.OldestMessageAge" | head 1 | return $Oldest_Message_Age])
0 Karma

splunker9999
Path Finder

Thanks,this is working good.

0 Karma

woodcock
Esteemed Legend

Be sure to click Accept on the best answer to close the question.

0 Karma

somesoni2
Revered Legend

Try like this

index=db source="Queue.OldestMessageAge" |head 1|table Oldest_Message_Age | appendcols [search index=db source="Queue.Depth"|head 1 | table Current_Depth ] | eval Oldest_Message_Age=if(Current_Depth=0,0,Oldest_Message_Age)| rename Oldest_Message_Age as "Oldest_Message_Age_in_mins" 
0 Karma

splunker9999
Path Finder

Thanks , this works good.

0 Karma

woodcock
Esteemed Legend

s/eappendcols/appendcos/?

0 Karma

somesoni2
Revered Legend

I did s/eappendcols/appendcols/ 🙂

Thanks for letting me know

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

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