Splunk Search

How do you use the value of the lookup filename as a field in the search result?

roayers
Explorer

Here is the search and lookup,

I need to capture the value, last_logon_lookup_20180928.csv

We need the value in bold above as a value in a field in the results called sourcefile

Search is shown below

index=wineventlog sourcetype=WinEventLog:Security  [| inputlookup last_logon_lookup_20180928.csv 
    | fields Account_Name] | lookup last_logon_lookup_20180928.csv Account_Name output Account_Name LASTLOGON 
| table  Account_Name LASTLOGON sourcefile

One thought we had was to use the REST API, but we could not get that integrated in the search to produce the required results

This gets us the lookup filename

| rest /services/data/transforms/lookups | search  filename=*last* |table sourcefile

Thanks In Advance

Robert

0 Karma

woodcock
Esteemed Legend

Try this:

index=wineventlog sourcetype=WinEventLog:Security
[| inputlookup last_logon_lookup_20180928.csv 
 | fields Account_Name] 
| lookup [ |rest/services/data/transforms/lookups | search filename=*last* | head 1 | return $filename ] Account_Name OUTPUT Account_Name LASTLOGON 
| table  Account_Name LASTLOGON sourcefile
0 Karma

nagarjuna280
Communicator

index=wineventlog sourcetype=WinEventLog:Security [| inputlookup last_logon_lookup_20180928.csv
| fields Account_Name] | lookup last_logon_lookup_20180928.csv Account_Name output Account_Name LASTLOGON

|eval sourcefile="last_logon_lookup_20180928.csv"
| table Account_Name LASTLOGON sourcefile

0 Karma

whrg
Motivator

Hi Robert! I'm not sure which part of the main search is dynamic: Is it both the "last_logon_lookup_20180928.csv" occurrences or is it "sourcefile" at the very end?

How about using a dashboard with a token?

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...