Splunk Search

How to get earliest and latest time for the last one hour and compare it with the same hour last week?

kumina
New Member

How to get earliest and latest time for the last one hour to compare with the same hour last week for which I don't know the earliest and latest time?

For last one hour, earliest=-1h@h latest=@h is working, but I don't know how to get the same hour last week for comparison purposes.

Kindly suggest

Tags (3)
0 Karma

mkarimi17
Path Finder

How about:

    | tstats count AS hourlyCount WHERE earliest=-7d@d latest=now index=* by index, _time span=1h | eval now_hour=strftime(now(),"%H") | eval time_hour=strftime(_time,"%H") | where time_hour=now_hour-1

It looks at the previous hour and matches it for the same hour in the past 7 days

0 Karma

DalJeanis
Legend

@mkarimi17 - perhaps you should try running it. It will give the same hour for each day, not just the two, and it will not compare last week's with this week's.

0 Karma

somesoni2
Revered Legend

Or in simple way,

earliest=-1h@h-1w latest=@h-1w

gyarici
Path Finder

Hi,

If you often compare such kind of results, I will recommend you to use "Timewrap application".

You can find it in here.

It is easy to use.

Here is also FAQ pages.FAQ

Hope it helps

Thanks

Gokhan

gfuente
Motivator

Hello

What about?

earliest=-169h@h latest=-168h@h

Regards

Get Updates on the Splunk Community!

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!

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

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...