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!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...