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
SplunkTrust
SplunkTrust

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!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...