Splunk Search

How do I return all events whether they're in Lookup table or not?

jwalzerpitt
Influencer

I have the following search:

index="foo" EventCode=*
| lookup windows_signatures.csv signature_id AS EventCode OUTPUT signature
| stats count by EventCode, signature

How do I see the events related to the field EventCode that doesn't have a corresponding signature in the lookup file?

I currently see the following:

EventCode signature                                                     count   
4624        An account was successfully logged on   259296
4634        An account was logged off                           255921
4672       Special privileges assigned to new logon     251320

but I want to see all EventCode events whether they have a signature field or not:

EventCode signature                                                     count   
4624        An account was successfully logged on   259296
4634        An account was logged off                           255921
6                                                                                              254891
4672       Special privileges assigned to new logon     251320

Thx

1 Solution

danwilson
Explorer

lookup shouldn't reduce the number of events, but rather it should leave some null valued fields, which won't be counted in your stats command.

You can use fillnull to give default the null fields a default value.

index="foo" EventCode=*
| lookup windows_signatures.csv signature_id AS EventCode OUTPUT signature
| fillnull value=null signature
| stats count by EventCode, signature

View solution in original post

danwilson
Explorer

lookup shouldn't reduce the number of events, but rather it should leave some null valued fields, which won't be counted in your stats command.

You can use fillnull to give default the null fields a default value.

index="foo" EventCode=*
| lookup windows_signatures.csv signature_id AS EventCode OUTPUT signature
| fillnull value=null signature
| stats count by EventCode, signature

jwalzerpitt
Influencer

Thx - that worked perfectly!

0 Karma

493669
Super Champion

Try This:

 index="foo" EventCode=*|join type=left EventCode[|inputlookup windows_signatures.csv|rename signature_id as "EventCode"|table EventCode, signature]|| stats count by EventCode, signature
0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

Splunk is officially part of Cisco

Revolutionizing how our customers build resilience across their entire digital footprint.   Splunk ...

Splunk APM & RUM | Planned Maintenance March 26 - March 28, 2024

There will be planned maintenance for Splunk APM and RUM between March 26, 2024 and March 28, 2024 as ...