Splunk Search

Is it possible to run a search with a cron expression inside the search?

prakashbhanu407
New Member

My requirement is to monitor files daily, weekly, monthly, and quarterly and I have to search during a specific time period for all these types of files and show how many were not received.

Not sure if this logic will work, but I wanted to check if we could give the cron expression within the search to match all the possibilities during the given time range and show file types if they were not received.

So could you please let me know the syntax ...I am using the below for success scenario

index=app-axxfer-restricted queryType="ts" 
(
    (filename=FILE.PROD.CFSTFN.DT*.txt )
    OR 
    (filename=FILE.PROD.CFSTFNTRG.txt ) 
    OR
    (filename=ORECFLAT.FNT554.CECFSTTRG*.txt )
) 
status=1 |rename filename as FileName  | table FileName| stats count(FileName)
0 Karma

somesoni2
Revered Legend

You may not event need to parse the cron. Try this and see if it suits your requirement

index=app-axxfer-restricted queryType="ts" ((filename=FILE.PROD.CFSTFN.DT*.txt ) OR (filename=FILE.PROD.CFSTFNTRG.txt ) OR (filename=ORECFLAT.FNT554.CECFSTTRG*.txt )) status=1 | table _time filename | sort 0 filename _time | streamstats current=f window=1 first(_time) as last_time by filename | eval timeSinceLastReceived=_time-last_time | MissingCount= round(timeSinceLastReceived/threshold)-1 | eval MissingCount>0

Where threshold is the value in second that you need to enter based on the frequency of the file arrival. E.g. for daily file, it would be 86400, for weekly 7*86400.. and so on

0 Karma

prakashbhanu407
New Member

Please confirm the below
1)Will it work if I give cron expression within the query
2)Syntax to use the Cron expression in a query

0 Karma
Get Updates on the Splunk Community!

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...