Splunk Search

filter using where command with AND & OR operators.

man03359
Communicator

I have two fields (lets say.) AA and BB, I am trying to filter our results where AA and BB = 00 OR 10 using something like this -

index="idx-some-index" sourcetype="dbx" source="some.*.source"
| where (AA AND BB)== (00 OR 10)

But I am getting error as Error in 'where' command: Type checking failed. 'AND' only takes boolean arguments.

I have also tried -

index="idx-some-index" sourcetype="dbx" source="some.*.source"
| where AA =(00 OR 10) AND (BB=(OO OR 10))

But I am getting same error as Type checking failed. 'OR' only takes boolean arguments.

 

Please help!

Labels (2)
0 Karma
1 Solution

man03359
Communicator

Nevermind! 

I was able to get the desired output by using -

| where (AA ="00" OR AA="10") OR (BB="00" OR BB="10")

View solution in original post

0 Karma

scelikok
SplunkTrust
SplunkTrust

Hi @man03359,

You can use the below syntax;

index="idx-some-index" sourcetype="dbx" source="some.*.source" AA IN (00,10) BB IN (00,10)

  or

index="idx-some-index" sourcetype="dbx" source="some.*.source" (AA=00 OR AA=10) (BB=00 OR BB=10)

 

If this reply helps you an upvote and "Accept as Solution" is appreciated.

man03359
Communicator

@scelikok Yes I tried out with -

|where AA IN ('00','10') AND BB IN ('00','10') 

But it was not giving any output, but the second one did worked :0

 

Thanks 🙂

0 Karma

man03359
Communicator

Nevermind! 

I was able to get the desired output by using -

| where (AA ="00" OR AA="10") OR (BB="00" OR BB="10")
0 Karma
Get Updates on the Splunk Community!

Your Guide to SPL2 at .conf24!

So, you’re headed to .conf24? You’re in for a good time. Las Vegas weather is just *chef’s kiss* beautiful in ...

Get ready to show some Splunk Certification swagger at .conf24!

Dive into the deep end of data by earning a Splunk Certification at .conf24. We're enticing you again this ...

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

Now On-Demand Join us to learn more about how you can leverage Service Level Objectives (SLOs) and the new ...