Splunk Enterprise

How to dynamically lookup filename?

Thulasinathan_M
Communicator

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
Communicator

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
Communicator

Thanks, worked like a charm!! 🙂

0 Karma
Get Updates on the Splunk Community!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...