Splunk Search

Omit time range in query

dataisbeautiful
Explorer

I am querying a change in a value each week over last 4 weeks. Ineed to know the value from the week before the search window to work out the change correctly.

index=ind sourcetype=src (type=instrument) earliest=-5w@w+1d latest=@w+1d
| bucket _time span=7d
| stats max(reading) as WeekMax by _time
| streamstats current=f last(WeekMax) as LastWeekMax
| eval WeekDelta = WeekMax - LastWeekMax
| eval WeekDelta = if(WeekDelta < 0, 0.000000, WeekDelta)
| table _time, WeekMax, WeekDelta

I don't want to show the time for the week before the query (-5th week). Any tips on how to change this query to only show results for last 4 weeks but still calculating the change correctly?

 

Thanks

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust
| where _time > relative_time(now(),"-4w@w+1d")

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust
| where _time > relative_time(now(),"-4w@w+1d")
Get Updates on the Splunk Community!

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...

Share Your Ideas & Meet the Lantern team at .Conf! Plus All of This Month’s New ...

Splunk Lantern is Splunk’s customer success center that provides advice from Splunk experts on valuable data ...