Splunk Search

Finding the latest source file per day

Nadhiyaa
Path Finder

My script runs every 2 hrs per day .But i need the latest file per day for a timerange to do some calculation.

Tags (1)
0 Karma

FrankVl
Ultra Champion

Are you looking for the event(s) related to that latest file, or for the file(name) itself? It would help if you could elaborate a bit on what your data looks like, what the output is that you're after (and perhaps what you have tried so far).

In general, to get the latest something per day, you could do something along the lines of:

index=foo
| eval day = _time
| bin day span=1d 
| stats latest(source) by day
| convert ctime(day)

Which gets you the latest value of the source field per day, for the given index.

0 Karma

Nadhiyaa
Path Finder

it works !! Thanks

0 Karma

FrankVl
Ultra Champion

Cool 🙂

I've changed my comment to an answer, so you can mark it as accepted.

0 Karma
Get Updates on the Splunk Community!

Automatic Discovery Part 1: What is Automatic Discovery in Splunk Observability Cloud ...

If you’ve ever deployed a new database cluster, spun up a caching layer, or added a load balancer, you know it ...

Real-Time Fraud Detection: How Splunk Dashboards Protect Financial Institutions

Financial fraud isn't slowing down. If anything, it's getting more sophisticated. Account takeovers, credit ...

Splunk + ThousandEyes: Correlate frontend, app, and network data to troubleshoot ...

 Are you tired of troubleshooting delays caused by siloed frontend, application, and network data? We've got a ...