Splunk Search

How do you use timewarp in specific?

phamxuantung
Communicator

Let's say I have this query

 

index = x 
|stats count as Total, sum(AMMOUNT) as TAmmount BY MERCHANT, SUBMERCHANT

 

I want to make a comparison by percentage between this month to the average of TOTAL three month ago. How do you go about using timewarp to  archive that goal?

Labels (2)
0 Karma

tread_splunk
Splunk Employee
Splunk Employee

You can adapt this.  I don't have months of data on my laptop.  So I've produced a chart with 2 lines.  One line is the last minute of activity (count of events per second), the other line is the average activity based on the 4 minutes before that.

index=_internal sourcetype=splunkd component=Metrics earliest=-5min@min latest=@min
| timechart span=1s count
| eval latestMinute=if(_time>=relative_time(now(),"-1m@m"),"LatestMinute","Average"), sec=strftime(_time,"%S")
| chart avg(count) over sec by latestMinute
0 Karma

PickleRick
SplunkTrust
SplunkTrust

For timewrap you need results of timechart.

0 Karma
Get Updates on the Splunk Community!

Index This | What’s a riddle wrapped in an enigma?

September 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this ...

BORE at .conf25

Boss Of Regular Expression (BORE) was an interactive session run again this year at .conf25 by the brilliant ...

OpenTelemetry for Legacy Apps? Yes, You Can!

This article is a follow-up to my previous article posted on the OpenTelemetry Blog, "Your Critical Legacy App ...