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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...