I am not a #DataScience person, so I need the wisdom of the #LazyWeb to help me out, please.
(I’m running queries on #Splunk, but I don’t think this question applies to Splunk only.)
I have a report running hourly to calculate metrics and store these to a separate index (in Splunk terms, a “summary metrics index”), for faster querying later. It's a data roll-up. (1/4)
The metrics I’m calculating include response times in quantiles (i.e., P50, P90, P99) and total requests. I also have a variety of dimensions I’m storing along with the metrics, so that I can filter on them in queries against the index.
When I query the index and do a `sum(total_requests)` with a filter, I get back the correct results. Because it's just a plain number. (2/4)