X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_alerts.py;h=3c5c6f9feacf9640119b1e5984d7b4fce11e93fe;hp=c3bf81d7ff773f1cd40770296425df779b0280dc;hb=c65595288367e8e6f53d225812d55ca4d90cdab2;hpb=b022196c957892cc5748cf6fa688776be81a7219 diff --git a/resources/tools/presentation/generator_alerts.py b/resources/tools/presentation/generator_alerts.py index c3bf81d7ff..3c5c6f9fea 100644 --- a/resources/tools/presentation/generator_alerts.py +++ b/resources/tools/presentation/generator_alerts.py @@ -363,7 +363,7 @@ class Alerting: :param idx: Index of the test set as it is specified in the specification file. :param header: The header of the list of [re|pro]gressions. - :param re_pro: 'regression' or 'progression'. + :param re_pro: 'regressions' or 'progressions'. :type alert: dict :type idx: int :type header: str @@ -408,8 +408,8 @@ class Alerting: text = u"" - legend = (f"Legend:\n[ Last trend in Mpps | number of runs for " - f"last trend |") + legend = (f"Legend: Test-name NIC Frame-size Trend[Mpps] Runs[#] " + f"Long-Term change[%]") out_file = ( f"{self.configs[alert[u'way']][u'output-dir']}/" @@ -417,7 +417,7 @@ class Alerting: ) try: with open(out_file, u'w') as reg_file: - reg_file.write(f"{legend} regressions ]") + reg_file.write(legend) except IOError: logging.error(f"Not possible to write the file {out_file}.txt.") @@ -427,7 +427,7 @@ class Alerting: ) try: with open(out_file, u'w') as reg_file: - reg_file.write(f"{legend} progressions ]") + reg_file.write(legend) except IOError: logging.error(f"Not possible to write the file {out_file}.txt.") @@ -437,7 +437,7 @@ class Alerting: try: groups = re.search( re.compile( - r'((vpp|dpdk)-\dn-(skx|clx|tsh|dnv|zn2|tx2)-.*)' + r'((vpp|dpdk)-\dn-(skx|clx|tsh|dnv|zn2|tx2|icx|alt)-.*)' ), test_set )