I have the following query to capture the application response time, and put it in summary index
source=iislog app="abc" | sistats avg(time_taken) count by source
index=summary search_name="capture app response time" | timechart span=1d avg(time_taken) by orig_source.
I would like to create a report that i can compare the response time for this week, last week and 4 weeks ago in the same report. How can i do that?
Thanks in advance.