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:33:00 +0000 |
commit | 65d8ef1e31118776f77ce6df372051c1e993f7be (patch) | |
tree | 2de678ba7b7fa4cc71553843019c89c36f0e9456 | |
parent | e6fcce618e5ed4f89760bcedf49bebf868fe86b3 (diff) |
CSIT-1041: Trending dashboard
Change-Id: I1e05f75545d97ab186fbc48df44bfe17472d6cfd
Signed-off-by: Tibor Frank <tifrank@cisco.com>
(cherry picked from commit 971bf6f4d091e15952199f0172119228d59f584a)
-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"): |