Splunk Search

Help with Boolean query

TheBravoSierra
Path Finder

Below is an example of what I want to accomplish:

 

If x="example" and y="success", return true for this segment. 

If x="example2" and y="success", return true for this segment.

If x="example3" and y="success", return true for this segment.

If all are three statements = true, return true. If not all three = true, return false.

 

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@TheBravoSierra 

Are you looking for this?

YOUR_SEARCH  | eval flag=if((x="example" OR x="example2" OR x="example3") and y="success", "true", "false")

 

My Sample Search :

| makeresults | eval x="example",y="success" |append [| makeresults | eval x="example2",y="failed" ]  | eval flag=if((x="example" OR x="example2" OR x="example3") and y="success", "true", "false")


 

0 Karma
Get Updates on the Splunk Community!

Splunk MCP & Agentic AI: Machine Data Without Limits

  Discover how the Splunk Model Context Protocol (MCP) Server can revolutionize the way your organization ...

Finding Based Detections General Availability

Overview  We’ve come a long way, folks, but here in Enterprise Security 8.4 I’m happy to announce Finding ...

Get Your Hands Dirty (and Your Shoes Comfy): The Splunk Experience

Hands-On Learning and Technical Seminars  Sometimes, you just need to see the code. For those looking for a ...