X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;h=81f022ea47a925e1b2fa66da244b61e1ee61cbd2;hb=4914a78f593124788c754695b79be146c3916c6f;hp=65bf6d562e7fbfa91723e9b63962059e81079d0d;hpb=482bb432e9607bce6cb92d41bf9e299c0e2fc288;p=csit.git diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 65bf6d562e..81f022ea47 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -588,6 +588,7 @@ def table_performance_trending_dashboard(table, input_data): std())[-2] if isnan(last): anomaly = "outlier" + last = list(pd_data)[-1] elif last < (trend - 3 * t_stdev): anomaly = "regression" elif last > (trend + 3 * t_stdev): @@ -595,14 +596,14 @@ def table_performance_trending_dashboard(table, input_data): else: anomaly = "normal" - if not isnan(last) and not isnan(trend): + if not isnan(last) and not isnan(trend) and trend != 0: # Change: change = round(float(last - trend) / 1000000, 2) # Relative change: rel_change = int(relative_change(float(trend), float(last))) tbl_lst.append([name, - round(float(last) / 1000000, 2), + round(float(trend) / 1000000, 2), change, rel_change, anomaly])