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!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...