From e1b5fa26916dcf6dfec5b78c24f39e66403554aa Mon Sep 17 00:00:00 2001 From: filipe oliveira Date: Mon, 16 May 2022 21:43:26 +0100 Subject: [PATCH] Added build variant zset (#359) * Added build variant zset * Bumping version from 0.9.3 to 0.9.4 --- pyproject.toml | 2 +- redisbench_admin/run/redistimeseries.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 21056ed..4439fa1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "redisbench-admin" -version = "0.9.3" +version = "0.9.4" description = "Redis benchmark run helper. A wrapper around Redis and Redis Modules benchmark tools ( ftsb_redisearch, memtier_benchmark, redis-benchmark, aibench, etc... )." authors = ["filipecosta90 ","Redis Performance Group "] readme = "README.md" diff --git a/redisbench_admin/run/redistimeseries.py b/redisbench_admin/run/redistimeseries.py index fe4ce5c..06c79af 100644 --- a/redisbench_admin/run/redistimeseries.py +++ b/redisbench_admin/run/redistimeseries.py @@ -416,6 +416,8 @@ def update_secondary_result_keys( rts.zadd(running_platforms_szetname, {running_platform: start_time_ms}) if build_variant_name is not None: rts.sadd(build_variant_setname, build_variant_name) + build_variant_zsetname = build_variant_setname + ":zset" + rts.zadd(build_variant_zsetname, {build_variant_name: start_time_ms}) if testcase_metric_context_paths is not None: for metric_context_path in testcase_metric_context_paths: if testcases_metric_context_path_setname != "":