Splunk Search

How to exclude search query results from base search

barunbiswas
New Member

I have file processing events with 2 stages - X & Y. I want to get filenames which have gone through X but not Y. I am unable to do so. Could you please advise?
I can list filenames with X stage or Y stage as below

index=test stage=X | stats values(filename)
index=test stage=Y | stats values(filename)

Tags (1)
0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

index=test stage=X OR stage=Y | stats values(stage) as stages by filename | where mvcount(stages)=1 AND stages="X"

Basically select rows for both stages, generating list of stages each filename has gone through and finally, selecting only events which went though single stage which is "X".

View solution in original post

0 Karma

somesoni2
Revered Legend

Try like this

index=test stage=X OR stage=Y | stats values(stage) as stages by filename | where mvcount(stages)=1 AND stages="X"

Basically select rows for both stages, generating list of stages each filename has gone through and finally, selecting only events which went though single stage which is "X".

0 Karma
Get Updates on the Splunk Community!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...