Splunk Search

list time when the logs are indexed by Splunk

flzftw
Explorer

Hey guys,

I'm a splunk newbie and I'm trying to list all the time a specific index tries to access the log file. So far I did achieve this :
index=test | eval indexed_time=strftime(_indextime, "%+") | stats max(indexed_time) by index

As far as I know It only shows the last time the test index accessed its log file.

Is it possible to list all of them ? If yes, how can I do it for a specific day ?

Thank you very much

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

You have the process reversed. Indexes do not access log files; log files are placed into indexes. To find all of the index times, don't use stats max.

index=test | eval indexed_time=strftime(_indextime, "%+") | table _time indexed_time source
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

You have the process reversed. Indexes do not access log files; log files are placed into indexes. To find all of the index times, don't use stats max.

index=test | eval indexed_time=strftime(_indextime, "%+") | table _time indexed_time source
---
If this reply helps you, Karma would be appreciated.

flzftw
Explorer

I see, now I understand better the process. Thank you very much !

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...