Dashboards & Visualizations

How can i get the date for my 1st event for the index?

rajhemant26
New Member

Hello everyone.

Want to display the output only for the time which crosses 18 months (earliest time)

Tags (1)
0 Karma

somesoni2
Revered Legend

Give this version a try

| rest /services/data/indexes 
| table title frozenTimePeriodInSecs minTime maxTime totalEventCount
| eval minTime=strptime(minTime,"%FT%T%Z") | eval maxTime=strptime(maxTime,"%FT%T%Z")
| stats sum(totalEventCount) as totalEventCount min(minTime) as minTime max(maxTime) as maxTime values(frozenTimePeriodInSecs) as frozenTimePeriodInSecs by title
| rename title as index
| streamstats count as Row
| eval Days=frozenTimePeriodInSecs/86400
| eval Year=Days/365
| fields Row index frozenTimePeriodInSecs minTime maxTime totalEventCount
| convert ctime(minTime) ctime(maxTime) timeformat="%FT%T%Z"

If you still don't see the time, that is because those indexes do not have any data in them, so there is no minTime/maxTime to display.

0 Karma

DMohn
Motivator

Just use a | tstats earliest(_time) as earliestTime by index | convert ctime(earliestTime) - this will have a look in all indexes and give you the timestamp of the earliest event.

Note - if an indes has no data, nothing will show!

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

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