X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_plots.py;h=869d2ca21e2b60d2f2fa62dd545a5fce0cab27d5;hp=42f450e68838835597a00fba4d35c60baabe522d;hb=7a26d43c4f71869695ba19ce58f9afac9a1d176d;hpb=7bcbdcb30d2eea8fe7e1fb60696e39abef897920 diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 42f450e688..869d2ca21e 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -380,54 +380,66 @@ def plot_perf_box_name(plot, input_data): multiplier = 1.0 y_vals = OrderedDict() test_type = u"" - for job in data: - for build in job: - for test in build: - if y_vals.get(test[u"parent"], None) is None: - y_vals[test[u"parent"]] = list() - try: - if test[u"type"] in (u"NDRPDR", u"CPS"): - test_type = test[u"type"] - - if u"-pdr" in plot_title: - ttype = u"PDR" - elif u"-ndr" in plot_title: - ttype = u"NDR" - else: - raise RuntimeError( - u"Wrong title. No information about test type. " - u"Add '-ndr' or '-pdr' to the test title." - ) - y_vals[test[u"parent"]].append( - test[value][ttype][u"LOWER"] * multiplier - ) - - elif test[u"type"] in (u"SOAK", ): - y_vals[test[u"parent"]].\ - append(test[u"throughput"][u"LOWER"]) - test_type = u"SOAK" + for item in plot.get(u"include", tuple()): + reg_ex = re.compile(str(item).lower()) + for job in data: + for build in job: + for test_id, test in build.iteritems(): + if not re.match(reg_ex, str(test_id).lower()): + continue + if y_vals.get(test[u"parent"], None) is None: + y_vals[test[u"parent"]] = list() + try: + if test[u"type"] in (u"NDRPDR", u"CPS"): + test_type = test[u"type"] + + if u"-pdr" in plot_title: + ttype = u"PDR" + elif u"-ndr" in plot_title: + ttype = u"NDR" + else: + raise RuntimeError( + u"Wrong title. No information about test " + u"type. Add '-ndr' or '-pdr' to the test " + u"title." + ) - elif test[u"type"] in (u"HOSTSTACK", ): - if u"LDPRELOAD" in test[u"tags"]: y_vals[test[u"parent"]].append( - float(test[u"result"][u"bits_per_second"]) / 1e3 + test[value][ttype][u"LOWER"] * multiplier ) - elif u"VPPECHO" in test[u"tags"]: - y_vals[test[u"parent"]].append( - (float(test[u"result"][u"client"][u"tx_data"]) - * 8 / 1e3) / - ((float(test[u"result"][u"client"][u"time"]) + - float(test[u"result"][u"server"][u"time"])) / - 2) - ) - test_type = u"HOSTSTACK" - else: - continue + elif test[u"type"] in (u"SOAK",): + y_vals[test[u"parent"]]. \ + append(test[u"throughput"][u"LOWER"]) + test_type = u"SOAK" + + elif test[u"type"] in (u"HOSTSTACK",): + if u"LDPRELOAD" in test[u"tags"]: + y_vals[test[u"parent"]].append( + float( + test[u"result"][u"bits_per_second"] + ) / 1e3 + ) + elif u"VPPECHO" in test[u"tags"]: + y_vals[test[u"parent"]].append( + (float( + test[u"result"][u"client"][u"tx_data"] + ) * 8 / 1e3) / + ((float( + test[u"result"][u"client"][u"time"] + ) + + float( + test[u"result"][u"server"][u"time"]) + ) / 2) + ) + test_type = u"HOSTSTACK" - except (KeyError, TypeError): - y_vals[test[u"parent"]].append(None) + else: + continue + + except (KeyError, TypeError): + y_vals[test[u"parent"]].append(None) # Add None to the lists with missing data max_len = 0 @@ -477,8 +489,10 @@ def plot_perf_box_name(plot, input_data): # Create plot layout = deepcopy(plot[u"layout"]) if layout.get(u"title", None): - if test_type in (u"HOSTSTACK", u"CPS"): + if test_type in (u"HOSTSTACK", ): layout[u"title"] = f"Bandwidth: {layout[u'title']}" + elif test_type in (u"CPS", ): + layout[u"title"] = f"CPS: {layout[u'title']}" else: layout[u"title"] = f"Throughput: {layout[u'title']}" if y_max: @@ -536,37 +550,43 @@ def plot_tsa_name(plot, input_data): multiplier = 1.0 y_vals = OrderedDict() - for job in data: - for build in job: - for test in build: - if y_vals.get(test[u"parent"], None) is None: - y_vals[test[u"parent"]] = { - u"1": list(), - u"2": list(), - u"4": list() - } - try: - if test[u"type"] not in (u"NDRPDR",): - continue - - if u"-pdr" in plot_title: - ttype = u"PDR" - elif u"-ndr" in plot_title: - ttype = u"NDR" - else: - continue - - if u"1C" in test[u"tags"]: - y_vals[test[u"parent"]][u"1"]. \ - append(test[value][ttype][u"LOWER"] * multiplier) - elif u"2C" in test[u"tags"]: - y_vals[test[u"parent"]][u"2"]. \ - append(test[value][ttype][u"LOWER"] * multiplier) - elif u"4C" in test[u"tags"]: - y_vals[test[u"parent"]][u"4"]. \ - append(test[value][ttype][u"LOWER"] * multiplier) - except (KeyError, TypeError): - pass + for item in plot.get(u"include", tuple()): + reg_ex = re.compile(str(item).lower()) + for job in data: + for build in job: + for test_id, test in build.iteritems(): + if re.match(reg_ex, str(test_id).lower()): + if y_vals.get(test[u"parent"], None) is None: + y_vals[test[u"parent"]] = { + u"1": list(), + u"2": list(), + u"4": list() + } + try: + if test[u"type"] not in (u"NDRPDR", u"CPS"): + continue + + if u"-pdr" in plot_title: + ttype = u"PDR" + elif u"-ndr" in plot_title: + ttype = u"NDR" + else: + continue + + if u"1C" in test[u"tags"]: + y_vals[test[u"parent"]][u"1"].append( + test[value][ttype][u"LOWER"] * multiplier + ) + elif u"2C" in test[u"tags"]: + y_vals[test[u"parent"]][u"2"].append( + test[value][ttype][u"LOWER"] * multiplier + ) + elif u"4C" in test[u"tags"]: + y_vals[test[u"parent"]][u"4"].append( + test[value][ttype][u"LOWER"] * multiplier + ) + except (KeyError, TypeError): + pass if not y_vals: logging.warning(f"No data for the plot {plot.get(u'title', u'')}") @@ -682,7 +702,7 @@ def plot_tsa_name(plot, input_data): x_vals = [1, 2, 4] # Limits: - if u"-gbps" not in plot_title: + if u"-gbps" not in plot_title and u"-cps-" not in plot_title: nic_limit /= 1e6 lnk_limit /= 1e6 pci_limit /= 1e6