Splunk Enterprise Security

Update a Lookup Table with Identity information coming from our index "elist"

MikeVenable
Path Finder

I need to update a Lookup Table with Identity information coming from our index "elist", I am trying get the search to take the events from the elist and compare it to the current lookup table, If the identity already exists in the lookup table then it will not add anything, but if doesn't it will add it. But also I would like it to check the end Date and if not null it will add the new information. This is what I have so far. the eList and the Lookup have different fields so I have to rename everything to match. Thanks!

index="elist" | search LoginID="MV123456" | rename LoginID AS identity, NickName AS nick, FirstName AS first, LastName AS last, Email AS email, SupName AS managedBy, DeptName AS bunit, JobTitle AS category, HireDate AS startDate, TermDate AS endDate, ST AS work_location, Phone AS phone| table identity, prefix, nick, first, last, suffix, email, phone, managedBy, priority, bunit, category, watchlist, startDate, endDate, work_location, work_country | outputlookup simple_identity_lookup append=t

0 Karma
1 Solution

jawaharas
Motivator

Try below SPL.

index="elist" 
| search LoginID="MV123456" 
| rename LoginID AS identity, NickName AS nick, FirstName AS first, LastName AS last, Email AS email, SupName AS managedBy, DeptName AS bunit, JobTitle AS category, HireDate AS startDate, TermDate AS endDate, ST AS work_location, Phone AS phone 
| table identity, prefix, nick, first, last, suffix, email, phone, managedBy, priority, bunit, category, watchlist, startDate, endDate, work_location, work_country 
| search NOT 
    [| inputlookup simple_identity_lookup 
    | table identity]
| outputlookup simple_identity_lookup append=t

View solution in original post

0 Karma

jawaharas
Motivator

Try below SPL.

index="elist" 
| search LoginID="MV123456" 
| rename LoginID AS identity, NickName AS nick, FirstName AS first, LastName AS last, Email AS email, SupName AS managedBy, DeptName AS bunit, JobTitle AS category, HireDate AS startDate, TermDate AS endDate, ST AS work_location, Phone AS phone 
| table identity, prefix, nick, first, last, suffix, email, phone, managedBy, priority, bunit, category, watchlist, startDate, endDate, work_location, work_country 
| search NOT 
    [| inputlookup simple_identity_lookup 
    | table identity]
| outputlookup simple_identity_lookup append=t
0 Karma

jawaharas
Motivator

@MikeVenable
Can you accept the answer if it's helped you? Thanks.

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