Splunk Enterprise

How to dynamically lookup filename?

Thulasinathan_M
Contributor

Hello Splunk Experts,
I've tried below query to use the 'previous_day' field in inputlookup and save it in outputlookup using today and append results if the file for today is not created. But it's not working. Could anyone please correct me on what I'm doing wrong here. Thanks in advance!!

 

 

index=test *exception

| [ | eval previous_day="lookup" .strftime(relative_time(now(), "-1d"), "%m%d"). ".csv"
    | inputlookup $previous_day$ ]
| eval today="lookup" .strftime(now(), "%m%d"). ".csv"
| [| inputlookup $today$ 
    | eval is_append= if(isnull(Exception), "append=1", "")]
| stats count by first(_raw) as Exception
| outputlookup $today$ $is_append$

 

 

Labels (1)
Tags (1)
0 Karma
1 Solution

isoutamo
SplunkTrust
SplunkTrust

it works something like this

<our base search here>
| append 
    [| inputlookup 
        [| makeresults 
        | eval search="result_".strftime(relative_time(now(), "-1d"),"%Y_%m_%d").".csv" 
        | table search]] 
| append 
    [| inputlookup 
        [| makeresults 
        | eval search="result_".strftime(now(),"%Y_%m_%d").".csv" 
        | table search]]

| <rest of your data manipulation here>

| outputlookup  
       [| makeresults 
        | eval search="result_".strftime(now(),"%Y_%m_%d").".csv" 
        | table search] 
       [| makeresults
        | eval search = if(isnull(Exception), "append=1", "")
        | table search]

 There could be something what you need to change, but basic idea is here.

View solution in original post

isoutamo
SplunkTrust
SplunkTrust
0 Karma

Thulasinathan_M
Contributor

I checked this post, but will this work in my case with inputlookup/ inputcsv as well. Could you please elaborate..

0 Karma

isoutamo
SplunkTrust
SplunkTrust

it works something like this

<our base search here>
| append 
    [| inputlookup 
        [| makeresults 
        | eval search="result_".strftime(relative_time(now(), "-1d"),"%Y_%m_%d").".csv" 
        | table search]] 
| append 
    [| inputlookup 
        [| makeresults 
        | eval search="result_".strftime(now(),"%Y_%m_%d").".csv" 
        | table search]]

| <rest of your data manipulation here>

| outputlookup  
       [| makeresults 
        | eval search="result_".strftime(now(),"%Y_%m_%d").".csv" 
        | table search] 
       [| makeresults
        | eval search = if(isnull(Exception), "append=1", "")
        | table search]

 There could be something what you need to change, but basic idea is here.

Thulasinathan_M
Contributor

Thanks, worked like a charm!! 🙂

0 Karma
Get Updates on the Splunk Community!

Splunk App Dev Community Updates – What’s New and What’s Next

Welcome to your go-to roundup of everything happening in the Splunk App Dev Community! Whether you're building ...

The Latest Cisco Integrations With Splunk Platform!

Join us for an exciting tech talk where we’ll explore the latest integrations in Cisco &#43; Splunk! We’ve ...

Enterprise Security Content Update (ESCU) | New Releases

In April, the Splunk Threat Research Team had 2 releases of new security content via the Enterprise Security ...