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!

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...