diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-04-25 17:25:30 +0000 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-04-25 17:29:02 +0000 |
commit | a1728c4f56cc44b9acb45614c20fc0a546ee3161 (patch) | |
tree | 279b6cce524cca6b950dc9b32e8f67ee1eeeb8e8 /resources/tools/presentation | |
parent | 0f662ea0defa9b30fa7a7d9256857fce92d20a6e (diff) |
CSIT-1041: Trending dashboard
Change-Id: If2e06d59fa8986ccf24abc118628b42d1deb6e39
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 6 |
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)) |