Splunk Search

how to exclude a certain field value from results

ayenumula
Explorer

Search query: list the last known user (userid) on each host.

sourcetype=syslog source=/var/log/secure "pam_unix(sshd:session)" | rex "(?i) user (?P<userid>[^ ]+)" | stats latest(userid) as userid by host, _time | dedup host

I then want to exclude a particular user "system" from the result list.

I tried the NOT and "!=" in every part of the query but not working, can you help me with the search query

Tags (2)
1 Solution

Damien_Dallimor
Ultra Champion
.. | where userid != "system" | ...

or maybe tweak your regex

(?i)\suser\s(?!system)(?P<userid>\w+)

View solution in original post

Damien_Dallimor
Ultra Champion
.. | where userid != "system" | ...

or maybe tweak your regex

(?i)\suser\s(?!system)(?P<userid>\w+)

ayenumula
Explorer

Is there a certain way to exclude multiple users using | where userid != "system"

0 Karma

ayenumula
Explorer

Damien's answer: | where userid != "system". This worked as it included the host (row) which has "system" user but excluded "system" from the result set, it still displayed the host with other users.

I tried Alterdego's answer: "| search userid!=system". This did not work for me because it completely excluded the host (row) which contains the word "system" even thou it contains other users.

0 Karma

alterdego
Path Finder

Does the value "system" appear in the filed you create? If so then you should be able to pipe your original search to the search command and exclude the "system" value with "| search userid!=system".

sourcetype=syslog source=/var/log/secure "pam_unix(sshd:session)" | rex "(?i) user (?P[^ ]+)" | stats latest(userid) as userid by host, _time | dedup host | search userid!=system

Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

.conf25 Global Broadcast: Don’t Miss a Moment

Hello Splunkers, .conf25 is only a click away.  Not able to make it to .conf25 in person? No worries, you can ...

Observe and Secure All Apps with Splunk

 Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

What's New in Splunk Observability - August 2025

What's New We are excited to announce the latest enhancements to Splunk Observability Cloud as well as what is ...