Skip to content
Snippets Groups Projects
Commit f7256114 authored by Konstantinos Poulakakis's avatar Konstantinos Poulakakis
Browse files

Make static thresholds for testing purposes.

parent 0f928f9c
No related branches found
No related tags found
No related merge requests found
......@@ -168,8 +168,8 @@ def aggregation_handler_total_latency(
result = {
"kpi_id": output_kpi_list[0],
"avg": total_kpi_lat,
"THRESHOLD_RAISE": bool(total_kpi_lat > thresholds["task_parameter"][0]["total"]),
"THRESHOLD_FALL": bool(total_kpi_lat < thresholds["task_parameter"][0]["total"])
"THRESHOLD_RAISE": bool(total_kpi_lat > 2600),
"THRESHOLD_FALL": bool(total_kpi_lat < 699)
}
results = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment