aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-04-25 17:25:30 +0000
committerTibor Frank <tifrank@cisco.com>2018-04-25 17:33:07 +0000
commit23eb64c1bd655859f9bebebdffd477b90c57cd71 (patch)
treecd03e3352ad24ff8608db5b9b01736fbda77abbb
parentae18f375abfd38d47327d6f18eb5d67140bbae42 (diff)
CSIT-1041: Trending dashboard
Change-Id: If2e06d59fa8986ccf24abc118628b42d1deb6e39 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit a1728c4f56cc44b9acb45614c20fc0a546ee3161)
-rw-r--r--resources/tools/presentation/generator_tables.py6
1 files changed, 3 insertions, 3 deletions
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))