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!

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 ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...