Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "redisbench-admin"
version = "0.4.9"
version = "0.4.10"
description = "Redis benchmark run helper. A wrapper around Redis and Redis Modules benchmark tools ( ftsb_redisearch, memtier_benchmark, redis-benchmark, aibench, etc... )."
authors = ["filipecosta90 <filipecosta.90@gmail.com>"]
readme = "README.md"
Expand Down
48 changes: 24 additions & 24 deletions redisbench_admin/run/redistimeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,30 +236,30 @@ def timeseries_test_sucess_flow(
tf_github_repo,
tf_triggering_env,
)
add_standardized_metric_byversion(
"benchmark_duration",
benchmark_duration_seconds,
artifact_version,
deployment_type,
rts,
start_time_ms,
test_name,
tf_github_org,
tf_github_repo,
tf_triggering_env,
)
add_standardized_metric_byversion(
"dataset_load_duration",
dataset_load_duration_seconds,
artifact_version,
deployment_type,
rts,
start_time_ms,
test_name,
tf_github_org,
tf_github_repo,
tf_triggering_env,
)
add_standardized_metric_byversion(
"benchmark_duration",
benchmark_duration_seconds,
artifact_version,
deployment_type,
rts,
start_time_ms,
test_name,
tf_github_org,
tf_github_repo,
tf_triggering_env,
)
add_standardized_metric_byversion(
"dataset_load_duration",
dataset_load_duration_seconds,
artifact_version,
deployment_type,
rts,
start_time_ms,
test_name,
tf_github_org,
tf_github_repo,
tf_triggering_env,
)
except redis.exceptions.ResponseError as e:
logging.warning(
"Error while updating secondary data structures {}. ".format(
Expand Down