Splunk Search

Need to search from a result without a particular value for a field

uayub
Path Finder

I have a search defined as

status=deny
The search list the result correctly. From this result there is a field dst which has an IP as its value. How could I further filter my search for the dst to not have a certain IP address?

For eg how could I achieve the result to not list say IP=255.255.255.255

I have tried this and it does not work: status=deny | where (dst not like "255.255.255.255")

The where above cannot take not as an argument. I am trying to filter the result to not have 255.255.255.255

Any help would be apprecaited.

Thanks.

Tags (2)
0 Karma

Ayn
Legend

It's as simple as using boolean operators directly in your base query.

status=deny AND NOT dst="255.255.255.255"

Even if where WOULD have accepted your syntax, it makes for a very inefficient search because what would happen is that the initial search command would retrieve ALL events that have "status=deny" before passing it on to the next command in the search pipeline. By filtering directly in the base search your query becomes much more efficient because only the events you're interested will actually be retrieved from the index.

uayub
Path Finder

Thanks a lot Jonuwz and Ayn... You folks ROCK !!!!

0 Karma

jonuwz
Influencer

+1 for explaining why 🙂

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 ...