Splunk Search

Omit time range in query

dataisbeautiful
Communicator

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")
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Event Series: Splunk Observability Metrics Cost Optimization

Balancing Scale and Spend: Gaining Control Over High-Volume Metrics in Splunk Observability Cloud As ...

Kick the Tires Before You Commit: A Hands-On Tour of the Splunk Observability Cloud ...

Evaluating an enterprise observability platform usually goes like this: fill out a form, get a free trial with ...

Deep insights, no barriers: Splunk Observability Cloud Free Edition

As software delivery cycles continue to accelerate, observability shouldn’t be a luxury — it should be a ...