From: Tibor Frank Date: Wed, 25 Apr 2018 17:25:30 +0000 (+0000) Subject: CSIT-1041: Trending dashboard X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=a1728c4f56cc44b9acb45614c20fc0a546ee3161;ds=sidebyside CSIT-1041: Trending dashboard Change-Id: If2e06d59fa8986ccf24abc118628b42d1deb6e39 Signed-off-by: Tibor Frank --- diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 0c189426c6..cb89a8bbcf 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -723,7 +723,7 @@ def table_performance_trending_dashboard(table, input_data): last_key = pd_data.keys()[-1] win_size = min(pd_data.size, table["window"]) win_first_idx = pd_data.size - win_size - key_14 = pd_data.keys()[-win_first_idx] + key_14 = pd_data.keys()[win_first_idx] long_win_size = min(pd_data.size, table["long-trend-window"]) data_t, _ = split_outliers(pd_data, outlier_const=1.5, @@ -777,13 +777,13 @@ def table_performance_trending_dashboard(table, input_data): rel_change_last = nan else: rel_change_last = round( - (last_median_t - median_t_14) / median_t_14, 2) + ((last_median_t - median_t_14) / median_t_14) * 100, 2) if isnan(max_median) or isnan(last_median_t) or max_median == 0.0: rel_change_long = nan else: rel_change_long = round( - (last_median_t - max_median) / max_median, 2) + ((last_median_t - max_median) / max_median) * 100, 2) logging.info("rel_change_last : {}".format(rel_change_last)) logging.info("rel_change_long : {}".format(rel_change_long))