Aggregation framework
The Redis Stack for Time Series aggregation framework provides functions that enable users to perform operations such as calculating the average, sum, minimum, maximum, count, or standard deviation of data points, within a specific time bucket or range. By using these functions, you can derive insights, detect trends, and analyze patterns in your time-series data more effectively.
The following is a list of aggregation functions:
- avg: Calculates the average (mean) value of data points within a specified time bucket or range. It is useful for analyzing and summarizing time-series data to understand trends and patterns over time.
- sum: Calculates the total (sum) of data points within a specified time bucket or range. It is useful for aggregating time-series data to understand the cumulative effect or total value of the data points over time.
- min: Calculates the minimum value of data points within a specified time bucket or range. It is useful for...