[#252] add filter priority to get_filtered_logs method

This commit is contained in:
Ilyas Niyazov 2024-06-28 17:13:35 +03:00 committed by Andrey Berezin
parent 3a4204f2e4
commit f4460194bc
3 changed files with 5 additions and 1 deletions

View file

@ -19,7 +19,7 @@ def check_metrics_counter(
counter_act += get_metrics_value(cluster_node, parse_from_command, **metrics_greps)
assert eval(
f"{counter_act} {operator} {counter_exp}"
), f"Expected: {counter_exp}, Actual: {counter_act} in node: {cluster_node}"
), f"Expected: {counter_exp} {operator} Actual: {counter_act} in node: {cluster_node}"
@reporter.step("Get metrics value from node: {node}")