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!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...