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!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...