1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-04 15:02:09 +03:00

Adding a RedisTimeSeries example (#1839)

* Adds the start of a timeseries example.

* Exports required TimeSeries items.

* Fixed import.

* Added TS.INFO example output.

* Fixed typo.

* Fixed typo.

* Exported aggregation enum.

* Working time series example.

Co-authored-by: Leibale Eidelman <leibale1998@gmail.com>
This commit is contained in:
Simon Prickett
2022-01-19 18:35:18 +00:00
committed by GitHub
parent b68836c59f
commit d602682b64
12 changed files with 139 additions and 12 deletions

View File

@@ -68,7 +68,7 @@ export default {
};
export enum TimeSeriesAggregationType {
AVARAGE = 'avg',
AVERAGE = 'avg',
SUM = 'sum',
MINIMUM = 'min',
MAXIMUM = 'max',