How can I find the overall average of metrics over time interval ?
avg(metric) = overall average value but
avg_over_time(metrics[interval]) = averages value per label
avg( avg_over_time(metric[scrape interval]) ) won't be same as(when the data is not continuous and denominator value is different) avg(metric) !!!!
Given a scenario, what will be the possible way to find the overall average over a time period.
Eg: Find the average response time now and Find the average response time(over all) of all the request triggered in last one hour.
The number will be helpful to notify a performance issue with latest upgrades.