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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...