diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-04-24 09:31:21 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-04-24 07:32:13 +0000 |
commit | 971bf6f4d091e15952199f0172119228d59f584a (patch) | |
tree | 85497e264b1a79fddc84a9e92cf5eb418dc89a23 /resources/tools/presentation | |
parent | de0aa31e85515e2d8a2a5db24e4520e1db26936d (diff) |
CSIT-1041: Trending dashboard
Change-Id: I1e05f75545d97ab186fbc48df44bfe17472d6cfd
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 0f0ed6c7a5..406ec85b2d 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -856,7 +856,7 @@ def table_performance_trending_dashboard(table, input_data): # Sort the table according to the classification tbl_sorted = list() - for long_trend_class in ("failure", '-'): + for long_trend_class in ("failure", 'normal', '-'): tbl_long = [item for item in tbl_lst if item[2] == long_trend_class] for classification in \ ("failure", "regression", "progression", "normal"): |