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!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...