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.

 

Labels (1)
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!

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...