Getting Data In

How to see if two different hosts have failure event records?

riotto
Path Finder

I need to return a "yes"
if (host=A has events > 0 and host=B has events > 0)
else '"no"

Tags (2)
0 Karma

riotto
Path Finder

sundareshr,

Won't that search give either host=A or host=B (...or maybe both) ? I need to return a "yes' when I have failure record from BOTH host=A and host=B

0 Karma

sundareshr
Legend

Try this

index=yourindex host=A OR host=B "failure" | stats count | eval result=if(count>0, "Yes", "No")
0 Karma

riotto
Path Finder

Won't that return a "yes" if either host A or host B returns an event?
I need when both host a and host b return an event

0 Karma

sundareshr
Legend

Ah!!! Try this

index=yourindex host=A OR host=B "failure" | stats dc(host) as hosts | eval result=if(hosts=2, "Yes", "No")
0 Karma

riotto
Path Finder

Yes I believe that will do it, you da man...Is there a way to pass the value of 'result' to a windows batchfile
that will be triggered to run when this alert runs?

0 Karma
Get Updates on the Splunk Community!

.conf25 Community Recap

Hello Splunkers, And just like that, .conf25 is in the books! What an incredible few days — full of learning, ...

Splunk App Developers | .conf25 Recap & What’s Next

If you stopped by the Builder Bar at .conf25 this year, thank you! The retro tech beer garden vibes were ...

Congratulations to the 2025-2026 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...