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.0"
version = "0.4.1"
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
4 changes: 2 additions & 2 deletions redisbench_admin/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
from redisbench_admin.watchdog.watchdog import watchdog_command_logic


LOG_LEVEL = logging.INFO
LOG_LEVEL = logging.DEBUG
if os.getenv("VERBOSE", "1") == "0":
LOG_LEVEL = logging.WARN
LOG_LEVEL = logging.INFO
LOG_FORMAT = "%(asctime)s %(levelname)-4s %(message)s"
LOG_DATEFMT = "%Y-%m-%d %H:%M:%S"

Expand Down
4 changes: 2 additions & 2 deletions redisbench_admin/utils/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ def extract_perversion_timeseries_from_results(
}
else:
logging.warning(
"Unable to find metric path {} in {}".format(jsonpath, results_dict)
"Unable to find metric path {} in result dict".format(jsonpath)
)
return True, branch_time_series_dict

Expand Down Expand Up @@ -599,7 +599,7 @@ def extract_perbranch_timeseries_from_results(
}
else:
logging.warning(
"Unable to find metric path {} in {}".format(jsonpath, results_dict)
"Unable to find metric path {} in result dict".format(jsonpath)
)
return True, branch_time_series_dict

Expand Down