CSIT-1131: Alerting
[csit.git] / resources / tools / presentation / specification_CPTA.yaml
1 # Copyright (c) 2018 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 # This is the specification of parameters for "Continuous Performance Trending
15 # and Analysis" feature provided by PAL.
16
17 -
18   type: "environment"
19
20   paths:
21     # Top level directories:
22     ## Working directory
23     DIR[WORKING]: "_tmp"
24     ## Build directories
25     DIR[BUILD,HTML]: "_build"
26     ## Static .rst files
27     DIR[RST]: "../../../docs/cpta"
28
29     # Static html content
30     DIR[STATIC]: "{DIR[BUILD,HTML]}/_static"
31     DIR[STATIC,VPP]: "{DIR[STATIC]}/vpp"
32     DIR[STATIC,ARCH]: "{DIR[STATIC]}/archive"
33
34     # Working directories
35     ## Input data files (.zip, .xml)
36     DIR[WORKING,DATA]: "{DIR[WORKING]}/data"
37     ## Static source files from git
38     DIR[WORKING,SRC]: "{DIR[WORKING]}/src"
39     DIR[WORKING,SRC,STATIC]: "{DIR[WORKING,SRC]}/_static"
40
41     # .css patch file
42     DIR[CSS_PATCH_FILE]: "{DIR[STATIC]}/theme_overrides.css"
43     DIR[CSS_PATCH_FILE2]: "{DIR[WORKING,SRC,STATIC]}/theme_overrides.css"
44
45   urls:
46     URL[JENKINS,CSIT]: "https://jenkins.fd.io/view/csit/job"
47     URL[NEXUS,LOG]: "https://logs.fd.io/production/vex-yul-rot-jenkins-1"
48     URL[NEXUS]: "https://docs.fd.io/csit"
49     DIR[NEXUS]: "trending/_static/archive"
50
51   make-dirs:
52   # List the directories which are created while preparing the environment.
53   # All directories MUST be defined in "paths" section.
54   - "DIR[WORKING,DATA]"
55   - "DIR[WORKING,SRC,STATIC]"
56   - "DIR[BUILD,HTML]"
57   - "DIR[STATIC,VPP]"
58   - "DIR[STATIC,ARCH]"
59   build-dirs:
60   # List the directories where the results (build) is stored.
61   # All directories MUST be defined in "paths" section.
62   - "DIR[BUILD,HTML]"
63
64 -
65   type: "configuration"
66
67   mapping-file: "mapping_tc_names.yaml"
68
69   ignore-list: "ignored_tcs.yaml"
70
71   alerting:
72
73     alerts:
74
75 # As Jenkins slave is not configured to send emails, this is now only as
76 # a working example:
77 #
78 #      # Send the list of failed tests vie email.
79 #      # Pre-requisites:
80 #      # - SMTP server is installed on the Jenkins slave
81 #      # - SMTP server is configured to send emails. Default configuration is
82 #      #   sufficient.
83 #      email-failed-tests:
84 #        # Title is used in logs and also as the email subject.
85 #        title: "Trending: Failed Tests"
86 #        # Type of alert.
87 #        type: "failed-tests"
88 #        # How to send the alert. The used way must be specified in the
89 #        # configuration part.
90 #        way: "email"
91 #        # Data to be included in the alert.
92 #        # Here is used the list of tables generated by the function
93 #        # "table_failed_tests_html".
94 #        include:
95 #        - "failed-tests-3n-hsw"
96 #        - "failed-tests-3n-skx"
97 #        - "failed-tests-2n-skx"
98 #        # This url is used in the tables instead of the original one. The aim
99 #        # is to make the links usable also from the email.
100 #        url: "https://docs.fd.io/csit/master/trending/trending"
101
102       # Jenkins job sends the email with failed tests.
103       # Pre-requisites:
104       # - Jenkins job is configured to send emails in "Post-build Actions" -->
105       #   "Editable Email Notification".
106       jenkins-send-failed-tests:
107         title: "Trending: Failed Tests"
108         type: "failed-tests"
109         way: "jenkins"
110         include:
111         - "failed-tests-3n-hsw"
112         - "failed-tests-3n-skx"
113         - "failed-tests-2n-skx"
114         url: "https://docs.fd.io/csit/master/trending/trending"
115
116     configurations:
117       # Configuration of the email notifications.
118       email:
119         # SMTP server
120         server: "localhost"
121         # List of recipients.
122         address-to:
123         - "csit-report@lists.fd.io"
124         # Sender
125         address-from: "testuser@testserver.com"
126
127       # Configuration of notifications sent by Jenkins.
128       jenkins:
129         # The directory in the workspace where the generated data is stored and
130         # then read by Jenkins job.
131         output-dir: "_build/_static/vpp"
132         # The name of the output files. ASCII text and HTML formats are
133         # generated.
134         output-file: "jenkins-alert-failed-tests"
135
136   data-sets:
137
138     # 3n-hsw
139     plot-performance-trending-all-3n-hsw:
140       csit-vpp-perf-mrr-daily-master:
141         start: 120
142         end: "lastCompletedBuild"
143       csit-dpdk-perf-mrr-weekly-master:
144         start: 3
145         end: "lastCompletedBuild"
146
147     plot-performance-trending-vpp-3n-hsw:
148       csit-vpp-perf-mrr-daily-master:
149         start: 120
150         end: "lastCompletedBuild"
151
152     plot-performance-trending-dpdk-3n-hsw:
153       csit-dpdk-perf-mrr-weekly-master:
154         start: 3
155         end: "lastCompletedBuild"
156
157     # 3n-skx
158     plot-performance-trending-all-3n-skx:
159       csit-vpp-perf-mrr-daily-master-3n-skx:
160         start: 1
161         end: "lastCompletedBuild"
162       csit-dpdk-perf-mrr-weekly-master-3n-skx:
163         start: 1
164         end: "lastCompletedBuild"
165
166     plot-performance-trending-vpp-3n-skx:
167       csit-vpp-perf-mrr-daily-master-3n-skx:
168         start: 1
169         end: "lastCompletedBuild"
170
171     plot-performance-trending-dpdk-3n-skx:
172       csit-dpdk-perf-mrr-weekly-master-3n-skx:
173         start: 1
174         end: "lastCompletedBuild"
175
176     # 2n-skx
177     plot-performance-trending-all-2n-skx:
178       csit-vpp-perf-mrr-daily-master-2n-skx:
179         start: 1
180         end: "lastCompletedBuild"
181       csit-dpdk-perf-mrr-weekly-master-2n-skx:
182         start: 1
183         end: "lastCompletedBuild"
184
185     plot-performance-trending-vpp-2n-skx:
186       csit-vpp-perf-mrr-daily-master-2n-skx:
187         start: 1
188         end: "lastCompletedBuild"
189
190     plot-performance-trending-dpdk-2n-skx:
191       csit-dpdk-perf-mrr-weekly-master-2n-skx:
192         start: 1
193         end: "lastCompletedBuild"
194
195   plot-layouts:
196
197     plot-cpta:
198       title: ""
199       autosize: False
200       showlegend: True
201       width: 1100
202       height: 800
203       yaxis:
204         showticklabels: True
205         tickformat: ".4s"
206         title: "Throughput [pps]"
207         hoverformat: ".4s"
208         gridcolor: "rgb(238, 238, 238)"
209         linecolor: "rgb(238, 238, 238)"
210         showline: True
211         zeroline: False
212         tickcolor: "rgb(238, 238, 238)"
213         linewidth: 1
214         showgrid: True
215       xaxis:
216         title: 'Date [MMDD]'
217         type: "date"
218         autorange: True
219         fixedrange: False
220         showgrid: True
221         gridcolor: "rgb(238, 238, 238)"
222         showline: True
223         linecolor: "rgb(238, 238, 238)"
224         zeroline: False
225         linewidth: 1
226         showticklabels: True
227         tickcolor: "rgb(238, 238, 238)"
228         tickmode: "auto"
229         tickformat: "%m%d"
230         rangeselector:
231           buttons:
232           - count: 14
233             label: "2w"
234             step: "day"
235             stepmode: "backward"
236           - count: 1
237             label: "1m"
238             step: "month"
239             stepmode: "backward"
240           - count: 2
241             label: "2m"
242             step: "month"
243             stepmode: "backward"
244           - count: 3
245             label: "3m"
246             step: "month"
247             stepmode: "backward"
248           - step: "all"
249       margin:
250         r: 20
251         b: 5
252         t: 5
253         l: 70
254       legend:
255         orientation: "h"
256         xanchor: "center"
257         traceorder: "normal"  # "grouped" does not work: bug https://github.com/plotly/plotly.js/issues/1913
258         tracegroupgap: 20
259         bordercolor: "rgb(238, 238, 238)"
260       hoverlabel:
261         namelength: -1
262
263 -
264   type: "static"
265   src-path: "{DIR[RST]}"
266   dst-path: "{DIR[WORKING,SRC]}"
267
268 -
269   type: "input"
270   general:
271     file-name: "output.xml.gz"
272     file-format: ".gz"
273     download-path: "{job}/{build}/archives/{filename}"
274     extract: "output.xml"
275
276   builds:
277
278     # 3n-hsw
279     csit-vpp-perf-mrr-daily-master:
280       start: 120
281       end: "lastCompletedBuild"
282     csit-dpdk-perf-mrr-weekly-master:
283       start: 3
284       end: "lastCompletedBuild"
285
286     # 3n-skx
287     csit-vpp-perf-mrr-daily-master-3n-skx:
288       start: 1
289       end: "lastCompletedBuild"
290     csit-dpdk-perf-mrr-weekly-master-3n-skx:
291       start: 1
292       end: "lastCompletedBuild"
293
294     # 2n-skx
295     csit-vpp-perf-mrr-daily-master-2n-skx:
296       start: 1
297       end: "lastCompletedBuild"
298     csit-dpdk-perf-mrr-weekly-master-2n-skx:
299       start: 1
300       end: "lastCompletedBuild"
301
302 -
303   type: "output"
304   output:
305     "CPTA"  # Continuous Performance Trending and Analysis
306   format:
307     html:
308     - full
309
310 ################################################################################
311 ###                               T A B L E S                                ###
312 ################################################################################
313
314 ################################################################################
315 # 3n-hsw
316 -
317   type: "table"
318   title: "Performance trending dashboard 1t1c-3n-hsw"
319   algorithm: "table_performance_trending_dashboard"
320   output-file-ext: ".csv"
321   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-1t1c-3n-hsw"
322   data: "plot-performance-trending-all-3n-hsw"
323   filter: "'MRR' and '1T1C' and not 'NIC_Intel-XXV710'"
324   parameters:
325   - "name"
326   - "parent"
327   - "result"
328   ignore-list:
329     # This test is "ndrdisc" test and was improperly tagged. It was fixed
330     # but it remains in the old output.xml files.
331   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc01-64b-1t1c-eth-l2bdscale1mmaclrn-ndrdisc"
332   outlier-const: 1.5
333   window: 14
334   evaluated-window: 14
335   long-trend-window: 180
336
337 -
338   type: "table"
339   title: "Performance trending dashboard 2t2c-3n-hsw"
340   algorithm: "table_performance_trending_dashboard"
341   output-file-ext: ".csv"
342   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-2t2c-3n-hsw"
343   data: "plot-performance-trending-all-3n-hsw"
344   filter: "'MRR' and '2T2C' and not 'NIC_Intel-XXV710'"
345   parameters:
346   - "name"
347   - "parent"
348   - "result"
349   ignore-list:
350     # This test is "ndrdisc" test and was improperly tagged. It was fixed
351     # but it remains in the old output.xml files.
352   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc05-64b-2t2c-eth-l2bdscale1mmaclrn-ndrdisc"
353   outlier-const: 1.5
354   window: 14
355   evaluated-window: 14
356   long-trend-window: 180
357
358 -
359   type: "table"
360   title: "Performance trending dashboard 4t4c-3n-hsw"
361   algorithm: "table_performance_trending_dashboard"
362   output-file-ext: ".csv"
363   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-4t4c-3n-hsw"
364   data: "plot-performance-trending-all-3n-hsw"
365   filter: "'MRR' and '4T4C' and not 'NIC_Intel-XXV710'"
366   parameters:
367   - "name"
368   - "parent"
369   - "result"
370   ignore-list:
371     # This test is "ndrdisc" test and was improperly tagged. It was fixed
372     # but it remains in the old output.xml files.
373   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc09-64b-4t4c-eth-l2bdscale1mmaclrn-ndrdisc"
374   outlier-const: 1.5
375   window: 14
376   evaluated-window: 14
377   long-trend-window: 180
378
379 -
380   type: "table"
381   title: "HTML performance trending dashboard 1t1c-3n-hsw"
382   algorithm: "table_performance_trending_dashboard_html"
383   input-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-1t1c-3n-hsw.csv"
384   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-1t1c-3n-hsw.rst"
385   testbed: "3n-hsw"
386
387 -
388   type: "table"
389   title: "HTML performance trending dashboard 2t2c-3n-hsw"
390   algorithm: "table_performance_trending_dashboard_html"
391   input-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-2t2c-3n-hsw.csv"
392   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-2t2c-3n-hsw.rst"
393   testbed: "3n-hsw"
394
395 -
396   type: "table"
397   title: "HTML performance trending dashboard 4t4c-3n-hsw"
398   algorithm: "table_performance_trending_dashboard_html"
399   input-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-4t4c-3n-hsw.csv"
400   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-4t4c-3n-hsw.rst"
401   testbed: "3n-hsw"
402
403 -
404   type: "table"
405   title: "Failed MRR tests 3n-hsw"
406   algorithm: "table_failed_tests"
407   output-file-ext: ".csv"
408   output-file: "{DIR[STATIC,VPP]}/failed-tests-3n-hsw"
409   data: "plot-performance-trending-all-3n-hsw"
410   filter: "'MRR' and not 'NIC_Intel-XXV710'"
411   parameters:
412   - "name"
413   - "parent"
414   - "status"
415   ignore-list:
416     # This test is "ndrdisc" test and was improperly tagged. It was fixed
417     # but it remains in the old output.xml files.
418   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc01-64b-1t1c-eth-l2bdscale1mmaclrn-ndrdisc"
419   window: 14
420
421 -
422   type: "table"
423   title: "HTML Failed MRR tests 3n-hsw"
424   algorithm: "table_failed_tests_html"
425   input-file: "{DIR[STATIC,VPP]}/failed-tests-3n-hsw.csv"
426   output-file: "{DIR[STATIC,VPP]}/failed-tests-3n-hsw.rst"
427   testbed: "3n-hsw"
428
429 ################################################################################
430 # 3n-skx
431 -
432   type: "table"
433   title: "Performance trending dashboard 2t1c-3n-skx"
434   algorithm: "table_performance_trending_dashboard"
435   output-file-ext: ".csv"
436   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-2t1c-3n-skx"
437   data: "plot-performance-trending-all-3n-skx"
438   filter: "'MRR' and '2T1C'"
439   parameters:
440   - "name"
441   - "parent"
442   - "result"
443   ignore-list:
444     # This test is "ndrdisc" test and was improperly tagged. It was fixed
445     # but it remains in the old output.xml files.
446   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc01-64b-2t1c-eth-l2bdscale1mmaclrn-ndrdisc"
447   outlier-const: 1.5
448   window: 14
449   evaluated-window: 14
450   long-trend-window: 180
451
452 -
453   type: "table"
454   title: "Performance trending dashboard 4t2c-3n-skx"
455   algorithm: "table_performance_trending_dashboard"
456   output-file-ext: ".csv"
457   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-4t2c-3n-skx"
458   data: "plot-performance-trending-all-3n-skx"
459   filter: "'MRR' and '4T2C'"
460   parameters:
461   - "name"
462   - "parent"
463   - "result"
464   ignore-list:
465     # This test is "ndrdisc" test and was improperly tagged. It was fixed
466     # but it remains in the old output.xml files.
467   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc05-64b-4t2c-eth-l2bdscale1mmaclrn-ndrdisc"
468   outlier-const: 1.5
469   window: 14
470   evaluated-window: 14
471   long-trend-window: 180
472
473 -
474   type: "table"
475   title: "Performance trending dashboard 8t4c-3n-skx"
476   algorithm: "table_performance_trending_dashboard"
477   output-file-ext: ".csv"
478   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-8t4c-3n-skx"
479   data: "plot-performance-trending-all-3n-skx"
480   filter: "'MRR' and '8T4C'"
481   parameters:
482   - "name"
483   - "parent"
484   - "result"
485   ignore-list:
486     # This test is "ndrdisc" test and was improperly tagged. It was fixed
487     # but it remains in the old output.xml files.
488   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc09-64b-8t4c-eth-l2bdscale1mmaclrn-ndrdisc"
489   outlier-const: 1.5
490   window: 14
491   evaluated-window: 14
492   long-trend-window: 180
493
494 -
495   type: "table"
496   title: "HTML performance trending dashboard 2t1c-3n-skx"
497   algorithm: "table_performance_trending_dashboard_html"
498   input-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-2t1c-3n-skx.csv"
499   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-2t1c-3n-skx.rst"
500   testbed: "3n-skx"
501
502 -
503   type: "table"
504   title: "HTML performance trending dashboard 4t2c-3n-skx"
505   algorithm: "table_performance_trending_dashboard_html"
506   input-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-4t2c-3n-skx.csv"
507   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-4t2c-3n-skx.rst"
508   testbed: "3n-skx"
509
510 -
511   type: "table"
512   title: "HTML performance trending dashboard 8t4c-3n-skx"
513   algorithm: "table_performance_trending_dashboard_html"
514   input-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-8t4c-3n-skx.csv"
515   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-8t4c-3n-skx.rst"
516   testbed: "3n-skx"
517
518 -
519   type: "table"
520   title: "Failed MRR tests 3n-skx"
521   algorithm: "table_failed_tests"
522   output-file-ext: ".csv"
523   output-file: "{DIR[STATIC,VPP]}/failed-tests-3n-skx"
524   data: "plot-performance-trending-all-3n-skx"
525   filter: "'MRR'"
526   parameters:
527   - "name"
528   - "parent"
529   - "status"
530   ignore-list:
531     # This test is "ndrdisc" test and was improperly tagged. It was fixed
532     # but it remains in the old output.xml files.
533   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc01-64b-2t1c-eth-l2bdscale1mmaclrn-ndrdisc"
534   window: 14
535
536 -
537   type: "table"
538   title: "HTML Failed MRR tests 3n-skx"
539   algorithm: "table_failed_tests_html"
540   input-file: "{DIR[STATIC,VPP]}/failed-tests-3n-skx.csv"
541   output-file: "{DIR[STATIC,VPP]}/failed-tests-3n-skx.rst"
542   testbed: "3n-skx"
543
544 ################################################################################
545 # 2n-skx
546 -
547   type: "table"
548   title: "Performance trending dashboard 2t1c-2n-skx"
549   algorithm: "table_performance_trending_dashboard"
550   output-file-ext: ".csv"
551   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-2t1c-2n-skx"
552   data: "plot-performance-trending-all-2n-skx"
553   filter: "'MRR' and '2T1C'"
554   parameters:
555   - "name"
556   - "parent"
557   - "result"
558   ignore-list:
559     # This test is "ndrdisc" test and was improperly tagged. It was fixed
560     # but it remains in the old output.xml files.
561   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc01-64b-2t1c-eth-l2bdscale1mmaclrn-ndrdisc"
562   outlier-const: 1.5
563   window: 14
564   evaluated-window: 14
565   long-trend-window: 180
566
567 -
568   type: "table"
569   title: "Performance trending dashboard 4t2c-2n-skx"
570   algorithm: "table_performance_trending_dashboard"
571   output-file-ext: ".csv"
572   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-4t2c-2n-skx"
573   data: "plot-performance-trending-all-2n-skx"
574   filter: "'MRR' and '4T2C'"
575   parameters:
576   - "name"
577   - "parent"
578   - "result"
579   ignore-list:
580     # This test is "ndrdisc" test and was improperly tagged. It was fixed
581     # but it remains in the old output.xml files.
582   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc05-64b-4t2c-eth-l2bdscale1mmaclrn-ndrdisc"
583   outlier-const: 1.5
584   window: 14
585   evaluated-window: 14
586   long-trend-window: 180
587
588 -
589   type: "table"
590   title: "Performance trending dashboard 8t4c-2n-skx"
591   algorithm: "table_performance_trending_dashboard"
592   output-file-ext: ".csv"
593   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-8t4c-2n-skx"
594   data: "plot-performance-trending-all-2n-skx"
595   filter: "'MRR' and '8T4C'"
596   parameters:
597   - "name"
598   - "parent"
599   - "result"
600   ignore-list:
601     # This test is "ndrdisc" test and was improperly tagged. It was fixed
602     # but it remains in the old output.xml files.
603   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc09-64b-8t4c-eth-l2bdscale1mmaclrn-ndrdisc"
604   outlier-const: 1.5
605   window: 14
606   evaluated-window: 14
607   long-trend-window: 180
608
609 -
610   type: "table"
611   title: "HTML performance trending dashboard 2t1c-2n-skx"
612   algorithm: "table_performance_trending_dashboard_html"
613   input-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-2t1c-2n-skx.csv"
614   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-2t1c-2n-skx.rst"
615   testbed: "2n-skx"
616
617 -
618   type: "table"
619   title: "HTML performance trending dashboard 4t2c-2n-skx"
620   algorithm: "table_performance_trending_dashboard_html"
621   input-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-4t2c-2n-skx.csv"
622   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-4t2c-2n-skx.rst"
623   testbed: "2n-skx"
624
625 -
626   type: "table"
627   title: "HTML performance trending dashboard 8t4c-2n-skx"
628   algorithm: "table_performance_trending_dashboard_html"
629   input-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-8t4c-2n-skx.csv"
630   output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-8t4c-2n-skx.rst"
631   testbed: "2n-skx"
632
633 -
634   type: "table"
635   title: "Failed MRR tests 2n-skx"
636   algorithm: "table_failed_tests"
637   output-file-ext: ".csv"
638   output-file: "{DIR[STATIC,VPP]}/failed-tests-2n-skx"
639   data: "plot-performance-trending-all-2n-skx"
640   filter: "'MRR'"
641   parameters:
642   - "name"
643   - "parent"
644   - "status"
645   ignore-list:
646     # This test is "ndrdisc" test and was improperly tagged. It was fixed
647     # but it remains in the old output.xml files.
648   - "tests.vpp.perf.l2.10ge2p1x520-eth-l2bdscale1mmaclrn-mrr.tc01-64b-2t1c-eth-l2bdscale1mmaclrn-ndrdisc"
649   window: 14
650
651 -
652   type: "table"
653   title: "HTML Failed MRR tests 2n-skx"
654   algorithm: "table_failed_tests_html"
655   input-file: "{DIR[STATIC,VPP]}/failed-tests-2n-skx.csv"
656   output-file: "{DIR[STATIC,VPP]}/failed-tests-2n-skx.rst"
657   testbed: "2n-skx"
658
659
660 ################################################################################
661 ###                                 C P T A                                  ###
662 ################################################################################
663
664 # Plots VPP Continuous Performance Trending and Analysis
665
666 -
667   type: "cpta"
668   title: "Continuous Performance Trending and Analysis"
669   output-file-type: ".html"
670   output-file: "{DIR[STATIC,VPP]}/cpta"
671
672   plots:
673
674 ################################################################################
675 # 3n-hsw
676
677 # L2 - x520
678
679     - title: "VPP 1T1C L2 64B MRR Trending 3n-hsw"
680       output-file-name: "l2-1t1c-x520-3n-hsw"
681       data: "plot-performance-trending-vpp-3n-hsw"
682       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
683       parameters:
684       - "result"
685       layout: "plot-cpta"
686
687     - title: "VPP 2T2C L2 64B MRR Trending 3n-hsw"
688       output-file-name: "l2-2t2c-x520-3n-hsw"
689       data: "plot-performance-trending-vpp-3n-hsw"
690       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
691       parameters:
692       - "result"
693       layout: "plot-cpta"
694
695     - title: "VPP 4T4C L2 64B MRR Trending 3n-hsw"
696       output-file-name: "l2-4t4c-x520-3n-hsw"
697       data: "plot-performance-trending-vpp-3n-hsw"
698       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
699       parameters:
700       - "result"
701       layout: "plot-cpta"
702
703     - title: "VPP 1T1C L2 64B IACL MRR Trending 3n-hsw"
704       output-file-name: "l2-feature-1t1c-x520-3n-hsw-iacl"
705       data: "plot-performance-trending-vpp-3n-hsw"
706       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and 'IACL' and not 'MACIP' and not 'VHOST' and not 'MEMIF'"
707       parameters:
708       - "result"
709       layout: "plot-cpta"
710
711     - title: "VPP 2T2C L2 64B IACL MRR Trending 3n-hsw"
712       output-file-name: "l2-feature-2t2c-x520-3n-hsw-iacl"
713       data: "plot-performance-trending-vpp-3n-hsw"
714       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and 'IACL' and not 'MACIP' and not 'VHOST' and not 'MEMIF'"
715       parameters:
716       - "result"
717       layout: "plot-cpta"
718
719     - title: "VPP 4T4C L2 64B IACL MRR Trending 3n-hsw"
720       output-file-name: "l2-feature-4t4c-x520-3n-hsw-iacl"
721       data: "plot-performance-trending-vpp-3n-hsw"
722       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and 'IACL' and not 'MACIP' and not 'VHOST' and not 'MEMIF'"
723       parameters:
724       - "result"
725       layout: "plot-cpta"
726
727     - title: "VPP 1T1C L2 64B OACL MRR Trending 3n-hsw"
728       output-file-name: "l2-feature-1t1c-x520-3n-hsw-oacl"
729       data: "plot-performance-trending-vpp-3n-hsw"
730       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and 'OACL' and not 'MACIP' and not 'VHOST' and not 'MEMIF'"
731       parameters:
732       - "result"
733       layout: "plot-cpta"
734
735     - title: "VPP 2T2C L2 64B OACL MRR Trending 3n-hsw"
736       output-file-name: "l2-feature-2t2c-x520-3n-hsw-oacl"
737       data: "plot-performance-trending-vpp-3n-hsw"
738       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and 'OACL' and not 'MACIP' and not 'VHOST' and not 'MEMIF'"
739       parameters:
740       - "result"
741       layout: "plot-cpta"
742
743     - title: "VPP 4T4C L2 64B OACL MRR Trending 3n-hsw"
744       output-file-name: "l2-feature-4t4c-x520-3n-hsw-oacl"
745       data: "plot-performance-trending-vpp-3n-hsw"
746       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and 'OACL' and not 'MACIP' and not 'VHOST' and not 'MEMIF'"
747       parameters:
748       - "result"
749       layout: "plot-cpta"
750
751     - title: "VPP 1T1C L2 64B MACIP MRR Trending 3n-hsw"
752       output-file-name: "l2-feature-1t1c-x520-3n-hsw-macip"
753       data: "plot-performance-trending-vpp-3n-hsw"
754       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and 'MACIP' and not 'VHOST' and not 'MEMIF'"
755       parameters:
756       - "result"
757       layout: "plot-cpta"
758
759     - title: "VPP 2T2C L2 64B MACIP MRR Trending 3n-hsw"
760       output-file-name: "l2-feature-2t2c-x520-3n-hsw-macip"
761       data: "plot-performance-trending-vpp-3n-hsw"
762       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and 'MACIP' and not 'VHOST' and not 'MEMIF'"
763       parameters:
764       - "result"
765       layout: "plot-cpta"
766
767     - title: "VPP 4T4C L2 64B MACIP MRR Trending 3n-hsw"
768       output-file-name: "l2-feature-4t4c-x520-3n-hsw-macip"
769       data: "plot-performance-trending-vpp-3n-hsw"
770       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and 'MACIP' and not 'VHOST' and not 'MEMIF'"
771       parameters:
772       - "result"
773       layout: "plot-cpta"
774
775 # L2 - xl710
776
777     - title: "VPP 1T1C L2 64B MRR Trending 3n-hsw"
778       output-file-name: "l2-1t1c-xl710-3n-hsw"
779       data: "plot-performance-trending-vpp-3n-hsw"
780       filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
781       parameters:
782       - "result"
783       layout: "plot-cpta"
784
785     - title: "VPP 2T2C L2 64B MRR Trending 3n-hsw"
786       output-file-name: "l2-2t2c-xl710-3n-hsw"
787       data: "plot-performance-trending-vpp-3n-hsw"
788       filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
789       parameters:
790       - "result"
791       layout: "plot-cpta"
792
793     - title: "VPP 4T4C L2 64B MRR Trending 3n-hsw"
794       output-file-name: "l2-4t4c-xl710-3n-hsw"
795       data: "plot-performance-trending-vpp-3n-hsw"
796       filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
797       parameters:
798       - "result"
799       layout: "plot-cpta"
800
801 # L2 - x710
802
803     - title: "VPP 1T1C L2 64B MRR Trending 3n-hsw"
804       output-file-name: "l2-1t1c-x710-3n-hsw"
805       data: "plot-performance-trending-vpp-3n-hsw"
806       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
807       parameters:
808       - "result"
809       layout: "plot-cpta"
810
811     - title: "VPP 2T2C L2 64B MRR Trending 3n-hsw"
812       output-file-name: "l2-2t2c-x710-3n-hsw"
813       data: "plot-performance-trending-vpp-3n-hsw"
814       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
815       parameters:
816       - "result"
817       layout: "plot-cpta"
818
819     - title: "VPP 4T4C L2 64B MRR Trending 3n-hsw"
820       output-file-name: "l2-4t4c-x710-3n-hsw"
821       data: "plot-performance-trending-vpp-3n-hsw"
822       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
823       parameters:
824       - "result"
825       layout: "plot-cpta"
826
827     - title: "VPP 1T1C L2 64B MRR Trending 3n-hsw"
828       output-file-name: "l2-feature-1t1c-x710-3n-hsw"
829       data: "plot-performance-trending-vpp-3n-hsw"
830       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
831       parameters:
832       - "result"
833       layout: "plot-cpta"
834
835     - title: "VPP 2T2C L2 64B MRR Trending 3n-hsw"
836       output-file-name: "l2-feature-2t2c-x710-3n-hsw"
837       data: "plot-performance-trending-vpp-3n-hsw"
838       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
839       parameters:
840       - "result"
841       layout: "plot-cpta"
842
843     - title: "VPP 4T4C L2 64B MRR Trending 3n-hsw"
844       output-file-name: "l2-feature-4t4c-x710-3n-hsw"
845       data: "plot-performance-trending-vpp-3n-hsw"
846       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
847       parameters:
848       - "result"
849       layout: "plot-cpta"
850
851 # IPv4 - x520
852
853     - title: "VPP 1T1C IPv4 64B MRR Trending 3n-hsw"
854       output-file-name: "ip4-1t1c-x520-3n-hsw"
855       data: "plot-performance-trending-vpp-3n-hsw"
856       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '1T1C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
857       parameters:
858       - "result"
859       layout: "plot-cpta"
860
861     - title: "VPP 2T2C IPv4 64B MRR Trending 3n-hsw"
862       output-file-name: "ip4-2t2c-x520-3n-hsw"
863       data: "plot-performance-trending-vpp-3n-hsw"
864       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T2C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
865       parameters:
866       - "result"
867       layout: "plot-cpta"
868
869     - title: "VPP 4T4C IPv4 64B MRR Trending 3n-hsw"
870       output-file-name: "ip4-4t4c-x520-3n-hsw"
871       data: "plot-performance-trending-vpp-3n-hsw"
872       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T4C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
873       parameters:
874       - "result"
875       layout: "plot-cpta"
876
877     - title: "VPP 1T1C IPv4 64B IACL MRR Trending 3n-hsw"
878       output-file-name: "ip4-feature-1t1c-x520-3n-hsw-iacl"
879       data: "plot-performance-trending-vpp-3n-hsw"
880       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and 'IP4FWD' and 'IACL' and not 'IPSEC' and not 'VHOST'"
881       parameters:
882       - "result"
883       layout: "plot-cpta"
884
885     - title: "VPP 2T2C IPv4 64B IACL MRR Trending 3n-hsw"
886       output-file-name: "ip4-feature-2t2c-x520-3n-hsw-iacl"
887       data: "plot-performance-trending-vpp-3n-hsw"
888       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and 'IP4FWD' and 'IACL' and not 'IPSEC' and not 'VHOST'"
889       parameters:
890       - "result"
891       layout: "plot-cpta"
892
893     - title: "VPP 4T4C IPv4 64B IACL MRR Trending 3n-hsw"
894       output-file-name: "ip4-feature-4t4c-x520-3n-hsw-iacl"
895       data: "plot-performance-trending-vpp-3n-hsw"
896       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and 'IP4FWD' and 'IACL' and not 'IPSEC' and not 'VHOST'"
897       parameters:
898       - "result"
899       layout: "plot-cpta"
900
901     - title: "VPP 1T1C IPv4 64B OACL MRR Trending 3n-hsw"
902       output-file-name: "ip4-feature-1t1c-x520-3n-hsw-oacl"
903       data: "plot-performance-trending-vpp-3n-hsw"
904       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and 'IP4FWD' and 'OACL' and not 'IPSEC' and not 'VHOST'"
905       parameters:
906       - "result"
907       layout: "plot-cpta"
908
909     - title: "VPP 2T2C IPv4 64B OACL MRR Trending 3n-hsw"
910       output-file-name: "ip4-feature-2t2c-x520-3n-hsw-oacl"
911       data: "plot-performance-trending-vpp-3n-hsw"
912       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and 'IP4FWD' and 'OACL' and not 'IPSEC' and not 'VHOST'"
913       parameters:
914       - "result"
915       layout: "plot-cpta"
916
917     - title: "VPP 4T4C IPv4 64B OACL MRR Trending 3n-hsw"
918       output-file-name: "ip4-feature-4t4c-x520-3n-hsw-oacl"
919       data: "plot-performance-trending-vpp-3n-hsw"
920       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and 'IP4FWD' and 'OACL' and not 'IPSEC' and not 'VHOST'"
921       parameters:
922       - "result"
923       layout: "plot-cpta"
924
925     - title: "VPP 1T1C IPv4 64B MRR Trending 3n-hsw"
926       output-file-name: "ip4-feature-1t1c-x520-3n-hsw"
927       data: "plot-performance-trending-vpp-3n-hsw"
928       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and 'IP4FWD' and not 'OACL' and not 'IACL' and not 'IPSEC' and not 'VHOST'"
929       parameters:
930       - "result"
931       layout: "plot-cpta"
932
933     - title: "VPP 2T2C IPv4 64B MRR Trending 3n-hsw"
934       output-file-name: "ip4-feature-2t2c-x520-3n-hsw"
935       data: "plot-performance-trending-vpp-3n-hsw"
936       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and 'IP4FWD' and not 'OACL' and not 'IACL' and not 'IPSEC' and not 'VHOST'"
937       parameters:
938       - "result"
939       layout: "plot-cpta"
940
941     - title: "VPP 4T4C IPv4 64B MRR Trending 3n-hsw"
942       output-file-name: "ip4-feature-4t4c-x520-3n-hsw"
943       data: "plot-performance-trending-vpp-3n-hsw"
944       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and 'IP4FWD' and not 'OACL' and not 'IACL' and not 'IPSEC' and not 'VHOST'"
945       parameters:
946       - "result"
947       layout: "plot-cpta"
948
949 # IPv4 - xl710
950
951     - title: "VPP 1T1C IPv4 64B MRR Trending 3n-hsw"
952       output-file-name: "ip4-1t1c-xl710-3n-hsw"
953       data: "plot-performance-trending-vpp-3n-hsw"
954       filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE' or 'FEATURE') and '1T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
955       parameters:
956       - "result"
957       layout: "plot-cpta"
958
959     - title: "VPP 2T2C IPv4 64B MRR Trending 3n-hsw"
960       output-file-name: "ip4-2t2c-xl710-3n-hsw"
961       data: "plot-performance-trending-vpp-3n-hsw"
962       filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
963       parameters:
964       - "result"
965       layout: "plot-cpta"
966
967     - title: "VPP 4T4C IPv4 64B MRR Trending 3n-hsw"
968       output-file-name: "ip4-4t4c-xl710-3n-hsw"
969       data: "plot-performance-trending-vpp-3n-hsw"
970       filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
971       parameters:
972       - "result"
973       layout: "plot-cpta"
974
975 # IPv4 - x710
976
977     - title: "VPP 1T1C IPv4 64B MRR Trending 3n-hsw"
978       output-file-name: "ip4-1t1c-x710-3n-hsw"
979       data: "plot-performance-trending-vpp-3n-hsw"
980       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '1T1C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
981       parameters:
982       - "result"
983       layout: "plot-cpta"
984
985     - title: "VPP 2T2C IPv4 64B MRR Trending 3n-hsw"
986       output-file-name: "ip4-2t2c-x710-3n-hsw"
987       data: "plot-performance-trending-vpp-3n-hsw"
988       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T2C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
989       parameters:
990       - "result"
991       layout: "plot-cpta"
992
993     - title: "VPP 4T4C IPv4 64B MRR Trending 3n-hsw"
994       output-file-name: "ip4-4t4c-x710-3n-hsw"
995       data: "plot-performance-trending-vpp-3n-hsw"
996       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T4C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
997       parameters:
998       - "result"
999       layout: "plot-cpta"
1000
1001     - title: "VPP 1T1C IPv4 64B MRR Trending 3n-hsw"
1002       output-file-name: "ip4-feature-1t1c-x710-3n-hsw"
1003       data: "plot-performance-trending-vpp-3n-hsw"
1004       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
1005       parameters:
1006       - "result"
1007       layout: "plot-cpta"
1008
1009     - title: "VPP 2T2C IPv4 64B MRR Trending 3n-hsw"
1010       output-file-name: "ip4-feature-2t2c-x710-3n-hsw"
1011       data: "plot-performance-trending-vpp-3n-hsw"
1012       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
1013       parameters:
1014       - "result"
1015       layout: "plot-cpta"
1016
1017     - title: "VPP 4T4C IPv4 64B MRR Trending 3n-hsw"
1018       output-file-name: "ip4-feature-4t4c-x710-3n-hsw"
1019       data: "plot-performance-trending-vpp-3n-hsw"
1020       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
1021       parameters:
1022       - "result"
1023       layout: "plot-cpta"
1024
1025 # IPv4 Tunnels - x520
1026
1027     - title: "VPP 1T1C IPv4 Tunnels 64B MRR Trending 3n-hsw"
1028       output-file-name: "ip4-tunnels-1t1c-x520-3n-hsw"
1029       data: "plot-performance-trending-vpp-3n-hsw"
1030       filter: "'NIC_Intel-X520-DA2' and '64B' and 'ENCAP' and 'MRR' and '1T1C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
1031       parameters:
1032       - "result"
1033       layout: "plot-cpta"
1034
1035     - title: "VPP 2T2C IPv4 Tunnels 64B MRR Trending 3n-hsw"
1036       output-file-name: "ip4-tunnels-2t2c-x520-3n-hsw"
1037       data: "plot-performance-trending-vpp-3n-hsw"
1038       filter: "'NIC_Intel-X520-DA2' and '64B' and 'ENCAP' and 'MRR' and '2T2C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
1039       parameters:
1040       - "result"
1041       layout: "plot-cpta"
1042
1043     - title: "VPP 4T4C IPv4 Tunnels 64B MRR Trending 3n-hsw"
1044       output-file-name: "ip4-tunnels-4t4c-x520-3n-hsw"
1045       data: "plot-performance-trending-vpp-3n-hsw"
1046       filter: "'NIC_Intel-X520-DA2' and '64B' and 'ENCAP' and 'MRR' and '4T4C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
1047       parameters:
1048       - "result"
1049       layout: "plot-cpta"
1050
1051 # IPv4 Tunnels - x710
1052
1053     - title: "VPP 1T1C IPv4 Tunnels 64B MRR Trending 3n-hsw"
1054       output-file-name: "ip4-tunnels-1t1c-x710-3n-hsw"
1055       data: "plot-performance-trending-vpp-3n-hsw"
1056       filter: "'NIC_Intel-X710' and '64B' and 'ENCAP' and 'MRR' and '1T1C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
1057       parameters:
1058       - "result"
1059       layout: "plot-cpta"
1060
1061     - title: "VPP 2T2C IPv4 Tunnels 64B MRR Trending 3n-hsw"
1062       output-file-name: "ip4-tunnels-2t2c-x710-3n-hsw"
1063       data: "plot-performance-trending-vpp-3n-hsw"
1064       filter: "'NIC_Intel-X710' and '64B' and 'ENCAP' and 'MRR' and '2T2C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
1065       parameters:
1066       - "result"
1067       layout: "plot-cpta"
1068
1069     - title: "VPP 4T4C IPv4 Tunnels 64B MRR Trending 3n-hsw"
1070       output-file-name: "ip4-tunnels-4t4c-x710-3n-hsw"
1071       data: "plot-performance-trending-vpp-3n-hsw"
1072       filter: "'NIC_Intel-X710' and '64B' and 'ENCAP' and 'MRR' and '4T4C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
1073       parameters:
1074       - "result"
1075       layout: "plot-cpta"
1076
1077 # IPv6 - x520
1078
1079     - title: "VPP 1T1C IPv6 78B MRR Trending 3n-hsw"
1080       output-file-name: "ip6-1t1c-x520-3n-hsw"
1081       data: "plot-performance-trending-vpp-3n-hsw"
1082       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '1T1C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST' and not 'SRv6'"
1083       parameters:
1084       - "result"
1085       layout: "plot-cpta"
1086
1087     - title: "VPP 2T2C IPv6 78B MRR Trending 3n-hsw"
1088       output-file-name: "ip6-2t2c-x520-3n-hsw"
1089       data: "plot-performance-trending-vpp-3n-hsw"
1090       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T2C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST' and not 'SRv6'"
1091       parameters:
1092       - "result"
1093       layout: "plot-cpta"
1094
1095     - title: "VPP 4T4C IPv6 78B MRR Trending 3n-hsw"
1096       output-file-name: "ip6-4t4c-x520-3n-hsw"
1097       data: "plot-performance-trending-vpp-3n-hsw"
1098       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T4C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST' and not 'SRv6'"
1099       parameters:
1100       - "result"
1101       layout: "plot-cpta"
1102
1103 # IPv6 - xl710
1104
1105     - title: "VPP 1T1C IPv6 78B MRR Trending 3n-hsw"
1106       output-file-name: "ip6-1t1c-xl710-3n-hsw"
1107       data: "plot-performance-trending-vpp-3n-hsw"
1108       filter: "'NIC_Intel-XL710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '1T1C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
1109       parameters:
1110       - "result"
1111       layout: "plot-cpta"
1112
1113     - title: "VPP 2T2C IPv6 78B MRR Trending 3n-hsw"
1114       output-file-name: "ip6-2t2c-xl710-3n-hsw"
1115       data: "plot-performance-trending-vpp-3n-hsw"
1116       filter: "'NIC_Intel-XL710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T2C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
1117       parameters:
1118       - "result"
1119       layout: "plot-cpta"
1120
1121     - title: "VPP 4T4C IPv6 78B MRR Trending 3n-hsw"
1122       output-file-name: "ip6-4t4c-xl710-3n-hsw"
1123       data: "plot-performance-trending-vpp-3n-hsw"
1124       filter: "'NIC_Intel-XL710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T4C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
1125       parameters:
1126       - "result"
1127       layout: "plot-cpta"
1128
1129 # IPv6 - x710
1130
1131     - title: "VPP 1T1C IPv6 78B MRR Trending 3n-hsw"
1132       output-file-name: "ip6-1t1c-x710-3n-hsw"
1133       data: "plot-performance-trending-vpp-3n-hsw"
1134       filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '1T1C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
1135       parameters:
1136       - "result"
1137       layout: "plot-cpta"
1138
1139     - title: "VPP 2T2C IPv6 78B MRR Trending 3n-hsw"
1140       output-file-name: "ip6-2t2c-x710-3n-hsw"
1141       data: "plot-performance-trending-vpp-3n-hsw"
1142       filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T2C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
1143       parameters:
1144       - "result"
1145       layout: "plot-cpta"
1146
1147     - title: "VPP 4T4C IPv6 78B MRR Trending 3n-hsw"
1148       output-file-name: "ip6-4t4c-x710-3n-hsw"
1149       data: "plot-performance-trending-vpp-3n-hsw"
1150       filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T4C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
1151       parameters:
1152       - "result"
1153       layout: "plot-cpta"
1154
1155 # Container memif - x520, 64B
1156
1157     - title: "VPP 1T1C L2 Container memif 64B MRR Trending 3n-hsw"
1158       output-file-name: "container-memif-l2-1t1c-x520-3n-hsw"
1159       data: "plot-performance-trending-vpp-3n-hsw"
1160       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1161       parameters:
1162       - "result"
1163       layout: "plot-cpta"
1164
1165     - title: "VPP 2T2C L2 Container memif 64B MRR Trending 3n-hsw"
1166       output-file-name: "container-memif-l2-2t2c-x520-3n-hsw"
1167       data: "plot-performance-trending-vpp-3n-hsw"
1168       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1169       parameters:
1170       - "result"
1171       layout: "plot-cpta"
1172
1173     - title: "VPP 4T4C L2 Container memif 64B MRR Trending 3n-hsw"
1174       output-file-name: "container-memif-l2-4t4c-x520-3n-hsw"
1175       data: "plot-performance-trending-vpp-3n-hsw"
1176       filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1177       parameters:
1178       - "result"
1179       layout: "plot-cpta"
1180
1181 # Container memif - x520, IMIX
1182
1183     - title: "VPP 1T1C L2 Container memif IMIX MRR Trending 3n-hsw"
1184       output-file-name: "container-memif-imix-l2-1t1c-x520-3n-hsw"
1185       data: "plot-performance-trending-vpp-3n-hsw"
1186       filter: "'NIC_Intel-X520-DA2' and 'MRR' and 'IMIX' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1187       parameters:
1188       - "result"
1189       layout: "plot-cpta"
1190
1191     - title: "VPP 2T2C L2 Container memif IMIX MRR Trending 3n-hsw"
1192       output-file-name: "container-memif-imix-l2-2t2c-x520-3n-hsw"
1193       data: "plot-performance-trending-vpp-3n-hsw"
1194       filter: "'NIC_Intel-X520-DA2' and 'MRR' and 'IMIX' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1195       parameters:
1196       - "result"
1197       layout: "plot-cpta"
1198
1199     - title: "VPP 4T4C L2 Container memif IMIX MRR Trending 3n-hsw"
1200       output-file-name: "container-memif-imix-l2-4t4c-x520-3n-hsw"
1201       data: "plot-performance-trending-vpp-3n-hsw"
1202       filter: "'NIC_Intel-X520-DA2' and 'MRR' and 'IMIX' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1203       parameters:
1204       - "result"
1205       layout: "plot-cpta"
1206
1207 # Container memif - xl710, 64B
1208
1209     - title: "VPP 1T1C L2 Container memif 64B MRR Trending 3n-hsw"
1210       output-file-name: "container-memif-l2-1t1c-xl710-3n-hsw"
1211       data: "plot-performance-trending-vpp-3n-hsw"
1212       filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1213       parameters:
1214       - "result"
1215       layout: "plot-cpta"
1216
1217     - title: "VPP 2T2C L2 Container memif 64B MRR Trending 3n-hsw"
1218       output-file-name: "container-memif-l2-2t2c-xl710-3n-hsw"
1219       data: "plot-performance-trending-vpp-3n-hsw"
1220       filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1221       parameters:
1222       - "result"
1223       layout: "plot-cpta"
1224
1225     - title: "VPP 4T4C L2 Container memif 64B MRR Trending 3n-hsw"
1226       output-file-name: "container-memif-l2-4t4c-xl710-3n-hsw"
1227       data: "plot-performance-trending-vpp-3n-hsw"
1228       filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1229       parameters:
1230       - "result"
1231       layout: "plot-cpta"
1232
1233 # Container memif - xl710, IMIX
1234
1235     - title: "VPP 1T1C L2 Container memif IMIX MRR Trending 3n-hsw"
1236       output-file-name: "container-memif-imix-l2-1t1c-xl710-3n-hsw"
1237       data: "plot-performance-trending-vpp-3n-hsw"
1238       filter: "'NIC_Intel-XL710' and 'MRR' and 'IMIX' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1239       parameters:
1240       - "result"
1241       layout: "plot-cpta"
1242
1243     - title: "VPP 2T2C L2 Container memif IMIX MRR Trending 3n-hsw"
1244       output-file-name: "container-memif-imix-l2-2t2c-xl710-3n-hsw"
1245       data: "plot-performance-trending-vpp-3n-hsw"
1246       filter: "'NIC_Intel-XL710' and 'MRR' and 'IMIX' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1247       parameters:
1248       - "result"
1249       layout: "plot-cpta"
1250
1251     - title: "VPP 4T4C L2 Container memif IMIX MRR Trending 3n-hsw"
1252       output-file-name: "container-memif-imix-l2-4t4c-xl710-3n-hsw"
1253       data: "plot-performance-trending-vpp-3n-hsw"
1254       filter: "'NIC_Intel-XL710' and 'MRR' and 'IMIX' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1255       parameters:
1256       - "result"
1257       layout: "plot-cpta"
1258
1259 # Container memif - x710, 64B
1260
1261     - title: "VPP 1T1C L2 Container memif 64B MRR Trending 3n-hsw"
1262       output-file-name: "container-memif-l2-1t1c-x710-3n-hsw"
1263       data: "plot-performance-trending-vpp-3n-hsw"
1264       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1265       parameters:
1266       - "result"
1267       layout: "plot-cpta"
1268
1269     - title: "VPP 2T2C L2 Container memif 64B MRR Trending 3n-hsw"
1270       output-file-name: "container-memif-l2-2t2c-x710-3n-hsw"
1271       data: "plot-performance-trending-vpp-3n-hsw"
1272       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1273       parameters:
1274       - "result"
1275       layout: "plot-cpta"
1276
1277     - title: "VPP 4T4C L2 Container memif 64B MRR Trending 3n-hsw"
1278       output-file-name: "container-memif-l2-4t4c-x710-3n-hsw"
1279       data: "plot-performance-trending-vpp-3n-hsw"
1280       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1281       parameters:
1282       - "result"
1283       layout: "plot-cpta"
1284
1285 # Container memif - x710, IMIX
1286
1287     - title: "VPP 1T1C L2 Container memif IMIX MRR Trending 3n-hsw"
1288       output-file-name: "container-memif-imix-l2-1t1c-x710-3n-hsw"
1289       data: "plot-performance-trending-vpp-3n-hsw"
1290       filter: "'NIC_Intel-X710' and 'MRR' and 'IMIX' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1291       parameters:
1292       - "result"
1293       layout: "plot-cpta"
1294
1295     - title: "VPP 2T2C L2 Container memif IMIX MRR Trending 3n-hsw"
1296       output-file-name: "container-memif-imix-l2-2t2c-x710-3n-hsw"
1297       data: "plot-performance-trending-vpp-3n-hsw"
1298       filter: "'NIC_Intel-X710' and 'MRR' and 'IMIX' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1299       parameters:
1300       - "result"
1301       layout: "plot-cpta"
1302
1303     - title: "VPP 4T4C L2 Container memif IMIX MRR Trending 3n-hsw"
1304       output-file-name: "container-memif-imix-l2-4t4c-x710-3n-hsw"
1305       data: "plot-performance-trending-vpp-3n-hsw"
1306       filter: "'NIC_Intel-X710' and 'MRR' and 'IMIX' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
1307       parameters:
1308       - "result"
1309       layout: "plot-cpta"
1310
1311 # VM vhost - x520, ethip4, 64B
1312
1313     - title: "VPP 1T1C VM vhost ethip4 64B MRR Trending 3n-hsw"
1314       output-file-name: "vm-vhost-ethip4-1t1c-x520-3n-hsw"
1315       data: "plot-performance-trending-vpp-3n-hsw"
1316       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '1T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1317       parameters:
1318       - "result"
1319       layout: "plot-cpta"
1320
1321     - title: "VPP 2T2C VM vhost ethip4 64B MRR Trending 3n-hsw"
1322       output-file-name: "vm-vhost-ethip4-2t2c-x520-3n-hsw"
1323       data: "plot-performance-trending-vpp-3n-hsw"
1324       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '2T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1325       parameters:
1326       - "result"
1327       layout: "plot-cpta"
1328
1329     - title: "VPP 4T4C VM vhost ethip4 64B MRR Trending 3n-hsw"
1330       output-file-name: "vm-vhost-ethip4-4t4c-x520-3n-hsw"
1331       data: "plot-performance-trending-vpp-3n-hsw"
1332       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '4T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1333       parameters:
1334       - "result"
1335       layout: "plot-cpta"
1336
1337 # VM vhost - x520, ethip4, IMIX
1338
1339     - title: "VPP 1T1C VM vhost ethip4 IMIX MRR Trending 3n-hsw"
1340       output-file-name: "vm-vhost-imix-ethip4-1t1c-x520-3n-hsw"
1341       data: "plot-performance-trending-vpp-3n-hsw"
1342       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1343       parameters:
1344       - "result"
1345       layout: "plot-cpta"
1346
1347     - title: "VPP 2T2C VM vhost ethip4 IMIX MRR Trending 3n-hsw"
1348       output-file-name: "vm-vhost-imix-ethip4-2t2c-x520-3n-hsw"
1349       data: "plot-performance-trending-vpp-3n-hsw"
1350       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1351       parameters:
1352       - "result"
1353       layout: "plot-cpta"
1354
1355     - title: "VPP 4T4C VM vhost ethip4 IMIX MRR Trending 3n-hsw"
1356       output-file-name: "vm-vhost-imix-ethip4-4t4c-x520-3n-hsw"
1357       data: "plot-performance-trending-vpp-3n-hsw"
1358       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1359       parameters:
1360       - "result"
1361       layout: "plot-cpta"
1362
1363 # VM vhost - x520, eth, 64B
1364
1365     - title: "VPP 1T1C VM vhost eth L2XC 64B MRR Trending 3n-hsw"
1366       output-file-name: "vm-vhost-eth-1t1c-x520-3n-hsw-l2xc"
1367       data: "plot-performance-trending-vpp-3n-hsw"
1368       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '1T1C' and 'VHOST' and 'L2XCFWD' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1369
1370       parameters:
1371       - "result"
1372       layout: "plot-cpta"
1373
1374     - title: "VPP 2T2C VM vhost eth L2XC 64B MRR Trending 3n-hsw"
1375       output-file-name: "vm-vhost-eth-2t2c-x520-3n-hsw-l2xc"
1376       data: "plot-performance-trending-vpp-3n-hsw"
1377       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '2T2C' and 'VHOST' and 'L2XCFWD' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1378       parameters:
1379       - "result"
1380       layout: "plot-cpta"
1381
1382     - title: "VPP 4T4C VM vhost eth L2XC 64B MRR Trending 3n-hsw"
1383       output-file-name: "vm-vhost-eth-4t4c-x520-3n-hsw-l2xc"
1384       data: "plot-performance-trending-vpp-3n-hsw"
1385       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '4T4C' and 'VHOST' and 'L2XCFWD' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1386       parameters:
1387       - "result"
1388       layout: "plot-cpta"
1389
1390     - title: "VPP 1T1C VM vhost eth L2BD 64B MRR Trending 3n-hsw"
1391       output-file-name: "vm-vhost-eth-1t1c-x520-3n-hsw-l2bd"
1392       data: "plot-performance-trending-vpp-3n-hsw"
1393       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '1T1C' and 'VHOST' and 'L2BDMACLRN' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1394
1395       parameters:
1396       - "result"
1397       layout: "plot-cpta"
1398
1399     - title: "VPP 2T2C VM vhost eth L2BD 64B MRR Trending 3n-hsw"
1400       output-file-name: "vm-vhost-eth-2t2c-x520-3n-hsw-l2bd"
1401       data: "plot-performance-trending-vpp-3n-hsw"
1402       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '2T2C' and 'VHOST' and 'L2BDMACLRN' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1403       parameters:
1404       - "result"
1405       layout: "plot-cpta"
1406
1407     - title: "VPP 4T4C VM vhost eth L2BD 64B MRR Trending 3n-hsw"
1408       output-file-name: "vm-vhost-eth-4t4c-x520-3n-hsw-l2bd"
1409       data: "plot-performance-trending-vpp-3n-hsw"
1410       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '4T4C' and 'VHOST' and 'L2BDMACLRN' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1411       parameters:
1412       - "result"
1413       layout: "plot-cpta"
1414
1415 # VM vhost - x520, eth, IMIX
1416
1417     - title: "VPP 1T1C VM vhost eth L2XC IMIX MRR Trending 3n-hsw"
1418       output-file-name: "vm-vhost-imix-eth-1t1c-x520-3n-hsw-l2xc"
1419       data: "plot-performance-trending-vpp-3n-hsw"
1420       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and 'L2XCFWD' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1421
1422       parameters:
1423       - "result"
1424       layout: "plot-cpta"
1425
1426     - title: "VPP 2T2C VM vhost eth L2XC IMIX MRR Trending 3n-hsw"
1427       output-file-name: "vm-vhost-imix-eth-2t2c-x520-3n-hsw-l2xc"
1428       data: "plot-performance-trending-vpp-3n-hsw"
1429       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and 'L2XCFWD' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1430       parameters:
1431       - "result"
1432       layout: "plot-cpta"
1433
1434     - title: "VPP 4T4C VM vhost eth L2XC IMIX MRR Trending 3n-hsw"
1435       output-file-name: "vm-vhost-imix-eth-4t4c-x520-3n-hsw-l2xc"
1436       data: "plot-performance-trending-vpp-3n-hsw"
1437       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and 'L2XCFWD' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1438       parameters:
1439       - "result"
1440       layout: "plot-cpta"
1441
1442     - title: "VPP 1T1C VM vhost eth L2BD IMIX MRR Trending 3n-hsw"
1443       output-file-name: "vm-vhost-imix-eth-1t1c-x520-3n-hsw-l2bd"
1444       data: "plot-performance-trending-vpp-3n-hsw"
1445       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and 'L2BDMACLRN' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1446
1447       parameters:
1448       - "result"
1449       layout: "plot-cpta"
1450
1451     - title: "VPP 2T2C VM vhost eth L2BD IMIX MRR Trending 3n-hsw"
1452       output-file-name: "vm-vhost-imix-eth-2t2c-x520-3n-hsw-l2bd"
1453       data: "plot-performance-trending-vpp-3n-hsw"
1454       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and 'L2BDMACLRN' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1455       parameters:
1456       - "result"
1457       layout: "plot-cpta"
1458
1459     - title: "VPP 4T4C VM vhost eth L2BD IMIX MRR Trending 3n-hsw"
1460       output-file-name: "vm-vhost-imix-eth-4t4c-x520-3n-hsw-l2bd"
1461       data: "plot-performance-trending-vpp-3n-hsw"
1462       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and 'L2BDMACLRN' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1463       parameters:
1464       - "result"
1465       layout: "plot-cpta"
1466
1467 # VM vhost - xl710, eth, 64B
1468
1469     - title: "VPP 1T1C VM vhost eth 64B MRR Trending 3n-hsw"
1470       output-file-name: "vm-vhost-eth-1t1c-xl710-3n-hsw"
1471       data: "plot-performance-trending-vpp-3n-hsw"
1472       filter: "'NIC_Intel-XL710' and '64B' and 'MRR' and '1T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1473
1474       parameters:
1475       - "result"
1476       layout: "plot-cpta"
1477
1478     - title: "VPP 2T2C VM vhost eth 64B MRR Trending 3n-hsw"
1479       output-file-name: "vm-vhost-eth-2t2c-xl710-3n-hsw"
1480       data: "plot-performance-trending-vpp-3n-hsw"
1481       filter: "'NIC_Intel-XL710' and '64B' and 'MRR' and '2T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1482       parameters:
1483       - "result"
1484       layout: "plot-cpta"
1485
1486     - title: "VPP 4T4C VM vhost eth 64B MRR Trending 3n-hsw"
1487       output-file-name: "vm-vhost-eth-4t4c-xl710-3n-hsw"
1488       data: "plot-performance-trending-vpp-3n-hsw"
1489       filter: "'NIC_Intel-XL710' and '64B' and 'MRR' and '4T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1490       parameters:
1491       - "result"
1492       layout: "plot-cpta"
1493
1494 # VM vhost - xl710, eth, IMIX
1495
1496     - title: "VPP 1T1C VM vhost eth IMIX MRR Trending 3n-hsw"
1497       output-file-name: "vm-vhost-imix-eth-1t1c-xl710-3n-hsw"
1498       data: "plot-performance-trending-vpp-3n-hsw"
1499       filter: "'NIC_Intel-XL710' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1500
1501       parameters:
1502       - "result"
1503       layout: "plot-cpta"
1504
1505     - title: "VPP 2T2C VM vhost eth IMIX MRR Trending 3n-hsw"
1506       output-file-name: "vm-vhost-imix-eth-2t2c-xl710-3n-hsw"
1507       data: "plot-performance-trending-vpp-3n-hsw"
1508       filter: "'NIC_Intel-XL710' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1509       parameters:
1510       - "result"
1511       layout: "plot-cpta"
1512
1513     - title: "VPP 4T4C VM vhost eth IMIX MRR Trending 3n-hsw"
1514       output-file-name: "vm-vhost-imix-eth-4t4c-xl710-3n-hsw"
1515       data: "plot-performance-trending-vpp-3n-hsw"
1516       filter: "'NIC_Intel-XL710' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1517       parameters:
1518       - "result"
1519       layout: "plot-cpta"
1520
1521 # VM vhost - x710, ethip4, 64B
1522
1523     - title: "VPP 1T1C VM vhost ethip4 64B MRR Trending 3n-hsw"
1524       output-file-name: "vm-vhost-ethip4-1t1c-x710-3n-hsw"
1525       data: "plot-performance-trending-vpp-3n-hsw"
1526       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '1T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1527       parameters:
1528       - "result"
1529       layout: "plot-cpta"
1530
1531     - title: "VPP 2T2C VM vhost ethip4 64B MRR Trending 3n-hsw"
1532       output-file-name: "vm-vhost-ethip4-2t2c-x710-3n-hsw"
1533       data: "plot-performance-trending-vpp-3n-hsw"
1534       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1535       parameters:
1536       - "result"
1537       layout: "plot-cpta"
1538
1539     - title: "VPP 4T4C VM vhost ethip4 64B MRR Trending 3n-hsw"
1540       output-file-name: "vm-vhost-ethip4-4t4c-x710-3n-hsw"
1541       data: "plot-performance-trending-vpp-3n-hsw"
1542       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1543       parameters:
1544       - "result"
1545       layout: "plot-cpta"
1546
1547 # VM vhost - x710, ethip4, IMIX
1548
1549     - title: "VPP 1T1C VM vhost ethip4 IMIX MRR Trending 3n-hsw"
1550       output-file-name: "vm-vhost-imix-ethip4-1t1c-x710-3n-hsw"
1551       data: "plot-performance-trending-vpp-3n-hsw"
1552       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1553       parameters:
1554       - "result"
1555       layout: "plot-cpta"
1556
1557     - title: "VPP 2T2C VM vhost ethip4 IMIX MRR Trending 3n-hsw"
1558       output-file-name: "vm-vhost-imix-ethip4-2t2c-x710-3n-hsw"
1559       data: "plot-performance-trending-vpp-3n-hsw"
1560       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1561       parameters:
1562       - "result"
1563       layout: "plot-cpta"
1564
1565     - title: "VPP 4T4C VM vhost ethip4 IMIX MRR Trending 3n-hsw"
1566       output-file-name: "vm-vhost-imix-ethip4-4t4c-x710-3n-hsw"
1567       data: "plot-performance-trending-vpp-3n-hsw"
1568       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
1569       parameters:
1570       - "result"
1571       layout: "plot-cpta"
1572
1573 # VM vhost - x710, eth, 64B
1574
1575     - title: "VPP 1T1C VM vhost eth 64B MRR Trending 3n-hsw"
1576       output-file-name: "vm-vhost-eth-1t1c-x710-3n-hsw"
1577       data: "plot-performance-trending-vpp-3n-hsw"
1578       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '1T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1579
1580       parameters:
1581       - "result"
1582       layout: "plot-cpta"
1583
1584     - title: "VPP 2T2C VM vhost eth 64B MRR Trending 3n-hsw"
1585       output-file-name: "vm-vhost-eth-2t2c-x710-3n-hsw"
1586       data: "plot-performance-trending-vpp-3n-hsw"
1587       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1588       parameters:
1589       - "result"
1590       layout: "plot-cpta"
1591
1592     - title: "VPP 4T4C VM vhost eth 64B MRR Trending 3n-hsw"
1593       output-file-name: "vm-vhost-eth-4t4c-x710-3n-hsw"
1594       data: "plot-performance-trending-vpp-3n-hsw"
1595       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1596       parameters:
1597       - "result"
1598       layout: "plot-cpta"
1599
1600 # VM vhost - x710, eth, IMIX
1601
1602     - title: "VPP 1T1C VM vhost eth IMIX MRR Trending 3n-hsw"
1603       output-file-name: "vm-vhost-imix-eth-1t1c-x710-3n-hsw"
1604       data: "plot-performance-trending-vpp-3n-hsw"
1605       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1606
1607       parameters:
1608       - "result"
1609       layout: "plot-cpta"
1610
1611     - title: "VPP 2T2C VM vhost eth IMIX MRR Trending 3n-hsw"
1612       output-file-name: "vm-vhost-imix-eth-2t2c-x710-3n-hsw"
1613       data: "plot-performance-trending-vpp-3n-hsw"
1614       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1615       parameters:
1616       - "result"
1617       layout: "plot-cpta"
1618
1619     - title: "VPP 4T4C VM vhost eth IMIX MRR Trending 3n-hsw"
1620       output-file-name: "vm-vhost-imix-eth-4t4c-x710-3n-hsw"
1621       data: "plot-performance-trending-vpp-3n-hsw"
1622       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
1623       parameters:
1624       - "result"
1625       layout: "plot-cpta"
1626
1627 # VTS - x520, 114B
1628
1629     - title: "VPP 1T1C VTS 114B MRR Trending 3n-hsw"
1630       output-file-name: "vts-114b-1t1c-x520-3n-hsw"
1631       data: "plot-performance-trending-vpp-3n-hsw"
1632       filter: "'NIC_Intel-X520-DA2' and '114B' and 'MRR' and '1T1C' and 'VHOST' and 'VTS'"
1633       parameters:
1634       - "result"
1635       layout: "plot-cpta"
1636
1637     - title: "VPP 2T2C VTS 114B MRR Trending 3n-hsw"
1638       output-file-name: "vts-114b-2t2c-x520-3n-hsw"
1639       data: "plot-performance-trending-vpp-3n-hsw"
1640       filter: "'NIC_Intel-X520-DA2' and '114B' and 'MRR' and '2T2C' and 'VHOST' and 'VTS'"
1641       parameters:
1642       - "result"
1643       layout: "plot-cpta"
1644
1645     - title: "VPP 4T4C VTS 114B 64B MRR Trending 3n-hsw"
1646       output-file-name: "vts-114b-4t4c-x520-3n-hsw"
1647       data: "plot-performance-trending-vpp-3n-hsw"
1648       filter: "'NIC_Intel-X520-DA2' and '114B' and 'MRR' and '4T4C' and 'VHOST' and 'VTS'"
1649       parameters:
1650       - "result"
1651       layout: "plot-cpta"
1652
1653 # IPSec
1654
1655     - title: "VPP 1T1C IPSec 64B MRR Trending 3n-hsw"
1656       output-file-name: "ipsec-1t1c-xl710-3n-hsw"
1657       data: "plot-performance-trending-vpp-3n-hsw"
1658       filter: "'NIC_Intel-XL710' and '64B' and 'IP4FWD' and 'MRR' and '1T1C' and 'IPSECHW' and ('IPSECTRAN' or 'IPSECTUN') and not 'VHOST'"
1659       parameters:
1660       - "result"
1661       layout: "plot-cpta"
1662
1663     - title: "VPP 2T2C IPSec 64B MRR Trending 3n-hsw"
1664       output-file-name: "ipsec-2t2c-xl710-3n-hsw"
1665       data: "plot-performance-trending-vpp-3n-hsw"
1666       filter: "'NIC_Intel-XL710' and '64B' and 'IP4FWD' and 'MRR' and '2T2C' and 'IPSECHW' and ('IPSECTRAN' or 'IPSECTUN') and not 'VHOST'"
1667       parameters:
1668       - "result"
1669       layout: "plot-cpta"
1670
1671     - title: "VPP 4T4C IPSec 64B MRR Trending 3n-hsw"
1672       output-file-name: "ipsec-4t4c-xl710-3n-hsw"
1673       data: "plot-performance-trending-vpp-3n-hsw"
1674       filter: "'NIC_Intel-XL710' and '64B' and 'IP4FWD' and 'MRR' and '4T4C' and 'IPSECHW' and ('IPSECTRAN' or 'IPSECTUN') and not 'VHOST'"
1675       parameters:
1676       - "result"
1677       layout: "plot-cpta"
1678
1679 # SRv6 - x520
1680
1681     - title: "VPP 1T1C SRv6 78B MRR Trending 3n-hsw"
1682       output-file-name: "srv6-78b-1t1c-x520-3n-hsw"
1683       data: "plot-performance-trending-vpp-3n-hsw"
1684       filter: "'NIC_Intel-X520-DA2' and '78B' and 'MRR' and '1T1C' and 'SRv6'"
1685       parameters:
1686       - "result"
1687       layout: "plot-cpta"
1688
1689     - title: "VPP 2T2C SRv6 78B MRR Trending 3n-hsw"
1690       output-file-name: "srv6-78b-2t2c-x520-3n-hsw"
1691       data: "plot-performance-trending-vpp-3n-hsw"
1692       filter: "'NIC_Intel-X520-DA2' and '78B' and 'MRR' and '2T2C' and 'SRv6'"
1693       parameters:
1694       - "result"
1695       layout: "plot-cpta"
1696
1697     - title: "VPP 4T4C SRv6 78B MRR Trending 3n-hsw"
1698       output-file-name: "srv6-78b-4t4c-x520-3n-hsw"
1699       data: "plot-performance-trending-vpp-3n-hsw"
1700       filter: "'NIC_Intel-X520-DA2' and '78B' and 'MRR' and '4T4C' and 'SRv6'"
1701       parameters:
1702       - "result"
1703       layout: "plot-cpta"
1704
1705     - title: "VPP 1T1C SRv6 IMIX MRR Trending 3n-hsw"
1706       output-file-name: "srv6-imix-1t1c-x520-3n-hsw"
1707       data: "plot-performance-trending-vpp-3n-hsw"
1708       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '1T1C' and 'SRv6'"
1709       parameters:
1710       - "result"
1711       layout: "plot-cpta"
1712
1713     - title: "VPP 2T2C SRv6 IMIX MRR Trending 3n-hsw"
1714       output-file-name: "srv6-imix-2t2c-x520-3n-hsw"
1715       data: "plot-performance-trending-vpp-3n-hsw"
1716       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '2T2C' and 'SRv6'"
1717       parameters:
1718       - "result"
1719       layout: "plot-cpta"
1720
1721     - title: "VPP 4T4C SRv6 IMIX MRR Trending 3n-hsw"
1722       output-file-name: "srv6-imix-4t4c-x520-3n-hsw"
1723       data: "plot-performance-trending-vpp-3n-hsw"
1724       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '4T4C' and 'SRv6'"
1725       parameters:
1726       - "result"
1727       layout: "plot-cpta"
1728
1729 # Link Bonding - x520
1730
1731     - title: "VPP 1T1C Link Bonding 64B MRR Trending 3n-hsw"
1732       output-file-name: "lb-64b-1t1c-x520-3n-hsw"
1733       data: "plot-performance-trending-vpp-3n-hsw"
1734       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '1T1C' and 'LBOND'"
1735       parameters:
1736       - "result"
1737       layout: "plot-cpta"
1738
1739     - title: "VPP 2T2C Link Bonding 64B MRR Trending 3n-hsw"
1740       output-file-name: "lb-64b-2t2c-x520-3n-hsw"
1741       data: "plot-performance-trending-vpp-3n-hsw"
1742       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '2T2C' and 'LBOND'"
1743       parameters:
1744       - "result"
1745       layout: "plot-cpta"
1746
1747     - title: "VPP 4T4C Link Bonding 64B MRR Trending 3n-hsw"
1748       output-file-name: "lb-64b-4t4c-x520-3n-hsw"
1749       data: "plot-performance-trending-vpp-3n-hsw"
1750       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '4T4C' and 'LBOND'"
1751       parameters:
1752       - "result"
1753       layout: "plot-cpta"
1754
1755     - title: "VPP 1T1C Link Bonding IMIX MRR Trending 3n-hsw"
1756       output-file-name: "lb-imix-1t1c-x520-3n-hsw"
1757       data: "plot-performance-trending-vpp-3n-hsw"
1758       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '1T1C' and 'LBOND'"
1759       parameters:
1760       - "result"
1761       layout: "plot-cpta"
1762
1763     - title: "VPP 2T2C Link Bonding IMIX MRR Trending 3n-hsw"
1764       output-file-name: "lb-imix-2t2c-x520-3n-hsw"
1765       data: "plot-performance-trending-vpp-3n-hsw"
1766       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '2T2C' and 'LBOND'"
1767       parameters:
1768       - "result"
1769       layout: "plot-cpta"
1770
1771     - title: "VPP 4T4C Link Bonding IMIX MRR Trending 3n-hsw"
1772       output-file-name: "lb-imix-4t4c-x520-3n-hsw"
1773       data: "plot-performance-trending-vpp-3n-hsw"
1774       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '4T4C' and 'LBOND'"
1775       parameters:
1776       - "result"
1777       layout: "plot-cpta"
1778
1779 # Link Bonding - x710
1780
1781     - title: "VPP 1T1C Link Bonding 64B MRR Trending 3n-hsw"
1782       output-file-name: "lb-64b-1t1c-x710-3n-hsw"
1783       data: "plot-performance-trending-vpp-3n-hsw"
1784       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '1T1C' and 'LBOND'"
1785       parameters:
1786       - "result"
1787       layout: "plot-cpta"
1788
1789     - title: "VPP 2T2C Link Bonding 64B MRR Trending 3n-hsw"
1790       output-file-name: "lb-64b-2t2c-x710-3n-hsw"
1791       data: "plot-performance-trending-vpp-3n-hsw"
1792       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T2C' and 'LBOND'"
1793       parameters:
1794       - "result"
1795       layout: "plot-cpta"
1796
1797     - title: "VPP 4T4C Link Bonding 64B MRR Trending 3n-hsw"
1798       output-file-name: "lb-64b-4t4c-x710-3n-hsw"
1799       data: "plot-performance-trending-vpp-3n-hsw"
1800       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T4C' and 'LBOND'"
1801       parameters:
1802       - "result"
1803       layout: "plot-cpta"
1804
1805     - title: "VPP 1T1C Link Bonding IMIX MRR Trending 3n-hsw"
1806       output-file-name: "lb-imix-1t1c-x710-3n-hsw"
1807       data: "plot-performance-trending-vpp-3n-hsw"
1808       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '1T1C' and 'LBOND'"
1809       parameters:
1810       - "result"
1811       layout: "plot-cpta"
1812
1813     - title: "VPP 2T2C Link Bonding IMIX MRR Trending 3n-hsw"
1814       output-file-name: "lb-imix-2t2c-x710-3n-hsw"
1815       data: "plot-performance-trending-vpp-3n-hsw"
1816       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T2C' and 'LBOND'"
1817       parameters:
1818       - "result"
1819       layout: "plot-cpta"
1820
1821     - title: "VPP 4T4C Link Bonding IMIX MRR Trending 3n-hsw"
1822       output-file-name: "lb-imix-4t4c-x710-3n-hsw"
1823       data: "plot-performance-trending-vpp-3n-hsw"
1824       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T4C' and 'LBOND'"
1825       parameters:
1826       - "result"
1827       layout: "plot-cpta"
1828
1829 # DPDK - x520 - 64B
1830
1831     - title: "DPDK 1T1C 64B MRR Trending 3n-hsw"
1832       output-file-name: "dpdk-64b-1t1c-x520-3n-hsw"
1833       data: "plot-performance-trending-dpdk-3n-hsw"
1834       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '1T1C' and 'DPDK'"
1835       parameters:
1836       - "result"
1837       layout: "plot-cpta"
1838
1839     - title: "DPDK 2T2C 64B MRR Trending 3n-hsw"
1840       output-file-name: "dpdk-64b-2t2c-x520-3n-hsw"
1841       data: "plot-performance-trending-dpdk-3n-hsw"
1842       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '2T2C' and 'DPDK'"
1843       parameters:
1844       - "result"
1845       layout: "plot-cpta"
1846
1847     - title: "DPDK 4T4C 64B MRR Trending 3n-hsw"
1848       output-file-name: "dpdk-64b-4t4c-x520-3n-hsw"
1849       data: "plot-performance-trending-dpdk-3n-hsw"
1850       filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '4T4C' and 'DPDK'"
1851       parameters:
1852       - "result"
1853       layout: "plot-cpta"
1854
1855 # DPDK - x710 - 64B
1856
1857     - title: "DPDK 1T1C 64B MRR Trending 3n-hsw"
1858       output-file-name: "dpdk-64b-1t1c-x710-3n-hsw"
1859       data: "plot-performance-trending-dpdk-3n-hsw"
1860       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '1T1C' and 'DPDK'"
1861       parameters:
1862       - "result"
1863       layout: "plot-cpta"
1864
1865     - title: "DPDK 2T2C 64B MRR Trending 3n-hsw"
1866       output-file-name: "dpdk-64b-2t2c-x710-3n-hsw"
1867       data: "plot-performance-trending-dpdk-3n-hsw"
1868       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T2C' and 'DPDK'"
1869       parameters:
1870       - "result"
1871       layout: "plot-cpta"
1872
1873     - title: "DPDK 4T4C 64B MRR Trending 3n-hsw"
1874       output-file-name: "dpdk-64b-4t4c-x710-3n-hsw"
1875       data: "plot-performance-trending-dpdk-3n-hsw"
1876       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T4C' and 'DPDK'"
1877       parameters:
1878       - "result"
1879       layout: "plot-cpta"
1880
1881 # DPDK - xl710 - 64B
1882
1883     - title: "DPDK 1T1C 64B MRR Trending 3n-hsw"
1884       output-file-name: "dpdk-64b-1t1c-xl710-3n-hsw"
1885       data: "plot-performance-trending-dpdk-3n-hsw"
1886       filter: "'NIC_Intel-XL710' and '64B' and 'MRR' and '1T1C' and 'DPDK'"
1887       parameters:
1888       - "result"
1889       layout: "plot-cpta"
1890
1891     - title: "DPDK 2T2C 64B MRR Trending 3n-hsw"
1892       output-file-name: "dpdk-64b-2t2c-xl710-3n-hsw"
1893       data: "plot-performance-trending-dpdk-3n-hsw"
1894       filter: "'NIC_Intel-XL710' and '64B' and 'MRR' and '2T2C' and 'DPDK'"
1895       parameters:
1896       - "result"
1897       layout: "plot-cpta"
1898
1899     - title: "DPDK 4T4C 64B MRR Trending 3n-hsw"
1900       output-file-name: "dpdk-64b-4t4c-xl710-3n-hsw"
1901       data: "plot-performance-trending-dpdk-3n-hsw"
1902       filter: "'NIC_Intel-XL710' and '64B' and 'MRR' and '4T4C' and 'DPDK'"
1903       parameters:
1904       - "result"
1905       layout: "plot-cpta"
1906
1907 # DPDK - x520 - IMIX
1908
1909     - title: "DPDK 1T1C IMIX MRR Trending 3n-hsw"
1910       output-file-name: "dpdk-imix-1t1c-x520-3n-hsw"
1911       data: "plot-performance-trending-dpdk-3n-hsw"
1912       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '1T1C' and 'DPDK'"
1913       parameters:
1914       - "result"
1915       layout: "plot-cpta"
1916
1917     - title: "DPDK 2T2C IMIX MRR Trending 3n-hsw"
1918       output-file-name: "dpdk-imix-2t2c-x520-3n-hsw"
1919       data: "plot-performance-trending-dpdk-3n-hsw"
1920       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '2T2C' and 'DPDK'"
1921       parameters:
1922       - "result"
1923       layout: "plot-cpta"
1924
1925     - title: "DPDK 4T4C IMIX MRR Trending 3n-hsw"
1926       output-file-name: "dpdk-imix-4t4c-x520-3n-hsw"
1927       data: "plot-performance-trending-dpdk-3n-hsw"
1928       filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '4T4C' and 'DPDK'"
1929       parameters:
1930       - "result"
1931       layout: "plot-cpta"
1932
1933 # DPDK - x710 - IMIX
1934
1935     - title: "DPDK 1T1C IMIX MRR Trending 3n-hsw"
1936       output-file-name: "dpdk-imix-1t1c-x710-3n-hsw"
1937       data: "plot-performance-trending-dpdk-3n-hsw"
1938       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '1T1C' and 'DPDK'"
1939       parameters:
1940       - "result"
1941       layout: "plot-cpta"
1942
1943     - title: "DPDK 2T2C IMIX MRR Trending 3n-hsw"
1944       output-file-name: "dpdk-imix-2t2c-x710-3n-hsw"
1945       data: "plot-performance-trending-dpdk-3n-hsw"
1946       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T2C' and 'DPDK'"
1947       parameters:
1948       - "result"
1949       layout: "plot-cpta"
1950
1951     - title: "DPDK 4T4C IMIX MRR Trending 3n-hsw"
1952       output-file-name: "dpdk-imix-4t4c-x710-3n-hsw"
1953       data: "plot-performance-trending-dpdk-3n-hsw"
1954       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T4C' and 'DPDK'"
1955       parameters:
1956       - "result"
1957       layout: "plot-cpta"
1958
1959 # DPDK - xl710 - IMIX
1960
1961     - title: "DPDK 1T1C IMIX MRR Trending 3n-hsw"
1962       output-file-name: "dpdk-imix-1t1c-xl710-3n-hsw"
1963       data: "plot-performance-trending-dpdk-3n-hsw"
1964       filter: "'NIC_Intel-XL710' and 'IMIX' and 'MRR' and '1T1C' and 'DPDK'"
1965       parameters:
1966       - "result"
1967       layout: "plot-cpta"
1968
1969     - title: "DPDK 2T2C IMIX MRR Trending 3n-hsw"
1970       output-file-name: "dpdk-imix-2t2c-xl710-3n-hsw"
1971       data: "plot-performance-trending-dpdk-3n-hsw"
1972       filter: "'NIC_Intel-XL710' and 'IMIX' and 'MRR' and '2T2C' and 'DPDK'"
1973       parameters:
1974       - "result"
1975       layout: "plot-cpta"
1976
1977     - title: "DPDK 4T4C IMIX MRR Trending 3n-hsw"
1978       output-file-name: "dpdk-imix-4t4c-xl710-3n-hsw"
1979       data: "plot-performance-trending-dpdk-3n-hsw"
1980       filter: "'NIC_Intel-XL710' and 'IMIX' and 'MRR' and '4T4C' and 'DPDK'"
1981       parameters:
1982       - "result"
1983       layout: "plot-cpta"
1984
1985 ################################################################################
1986 # 3n-skx
1987
1988 # L2 - x710
1989
1990     - title: "VPP 2T1C L2 64B MRR Trending 3n-skx"
1991       output-file-name: "l2-2t1c-x710-3n-skx"
1992       data: "plot-performance-trending-vpp-3n-skx"
1993       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
1994       parameters:
1995       - "result"
1996       layout: "plot-cpta"
1997
1998     - title: "VPP 4T2C L2 64B MRR Trending 3n-skx"
1999       output-file-name: "l2-4t2c-x710-3n-skx"
2000       data: "plot-performance-trending-vpp-3n-skx"
2001       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2002       parameters:
2003       - "result"
2004       layout: "plot-cpta"
2005
2006     - title: "VPP 8T4C L2 64B MRR Trending 3n-skx"
2007       output-file-name: "l2-8t4c-x710-3n-skx"
2008       data: "plot-performance-trending-vpp-3n-skx"
2009       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '8T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2010       parameters:
2011       - "result"
2012       layout: "plot-cpta"
2013
2014     - title: "VPP 2T1C L2 64B MRR Trending 3n-skx"
2015       output-file-name: "l2-feature-2t1c-x710-3n-skx"
2016       data: "plot-performance-trending-vpp-3n-skx"
2017       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '2T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2018       parameters:
2019       - "result"
2020       layout: "plot-cpta"
2021
2022     - title: "VPP 4T2C L2 64B MRR Trending 3n-skx"
2023       output-file-name: "l2-feature-4t2c-x710-3n-skx"
2024       data: "plot-performance-trending-vpp-3n-skx"
2025       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '4T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2026       parameters:
2027       - "result"
2028       layout: "plot-cpta"
2029
2030     - title: "VPP 8T4C L2 64B MRR Trending 3n-skx"
2031       output-file-name: "l2-feature-8t4c-x710-3n-skx"
2032       data: "plot-performance-trending-vpp-3n-skx"
2033       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '8T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2034       parameters:
2035       - "result"
2036       layout: "plot-cpta"
2037
2038 # L2 - xxv710
2039
2040     - title: "VPP 2T1C L2 64B MRR Trending 3n-skx"
2041       output-file-name: "l2-2t1c-xxv710-3n-skx"
2042       data: "plot-performance-trending-vpp-3n-skx"
2043       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2044       parameters:
2045       - "result"
2046       layout: "plot-cpta"
2047
2048     - title: "VPP 4T2C L2 64B MRR Trending 3n-skx"
2049       output-file-name: "l2-4t2c-xxv710-3n-skx"
2050       data: "plot-performance-trending-vpp-3n-skx"
2051       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2052       parameters:
2053       - "result"
2054       layout: "plot-cpta"
2055
2056     - title: "VPP 8T4C L2 64B MRR Trending 3n-skx"
2057       output-file-name: "l2-8t4c-xxv710-3n-skx"
2058       data: "plot-performance-trending-vpp-3n-skx"
2059       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '8T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2060       parameters:
2061       - "result"
2062       layout: "plot-cpta"
2063
2064     - title: "VPP 2T1C L2 64B MRR Trending 3n-skx"
2065       output-file-name: "l2-feature-2t1c-xxv710-3n-skx"
2066       data: "plot-performance-trending-vpp-3n-skx"
2067       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '2T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2068       parameters:
2069       - "result"
2070       layout: "plot-cpta"
2071
2072     - title: "VPP 4T2C L2 64B MRR Trending 3n-skx"
2073       output-file-name: "l2-feature-4t2c-xxv710-3n-skx"
2074       data: "plot-performance-trending-vpp-3n-skx"
2075       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '4T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2076       parameters:
2077       - "result"
2078       layout: "plot-cpta"
2079
2080     - title: "VPP 8T4C L2 64B MRR Trending 3n-skx"
2081       output-file-name: "l2-feature-8t4c-xxv710-3n-skx"
2082       data: "plot-performance-trending-vpp-3n-skx"
2083       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '8T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2084       parameters:
2085       - "result"
2086       layout: "plot-cpta"
2087
2088 # IPv4 - x710
2089
2090     - title: "VPP 2T1C IPv4 64B MRR Trending 3n-skx"
2091       output-file-name: "ip4-2t1c-x710-3n-skx"
2092       data: "plot-performance-trending-vpp-3n-skx"
2093       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T1C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2094       parameters:
2095       - "result"
2096       layout: "plot-cpta"
2097
2098     - title: "VPP 4T2C IPv4 64B MRR Trending 3n-skx"
2099       output-file-name: "ip4-4t2c-x710-3n-skx"
2100       data: "plot-performance-trending-vpp-3n-skx"
2101       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T2C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2102       parameters:
2103       - "result"
2104       layout: "plot-cpta"
2105
2106     - title: "VPP 8T4C IPv4 64B MRR Trending 3n-skx"
2107       output-file-name: "ip4-8t4c-x710-3n-skx"
2108       data: "plot-performance-trending-vpp-3n-skx"
2109       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '8T4C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2110       parameters:
2111       - "result"
2112       layout: "plot-cpta"
2113
2114     - title: "VPP 2T1C IPv4 64B MRR Trending 3n-skx"
2115       output-file-name: "ip4-feature-2t1c-x710-3n-skx"
2116       data: "plot-performance-trending-vpp-3n-skx"
2117       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '2T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
2118       parameters:
2119       - "result"
2120       layout: "plot-cpta"
2121
2122     - title: "VPP 4T2C IPv4 64B MRR Trending 3n-skx"
2123       output-file-name: "ip4-feature-4t2c-x710-3n-skx"
2124       data: "plot-performance-trending-vpp-3n-skx"
2125       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '4T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
2126       parameters:
2127       - "result"
2128       layout: "plot-cpta"
2129
2130     - title: "VPP 8T4C IPv4 64B MRR Trending 3n-skx"
2131       output-file-name: "ip4-feature-8t4c-x710-3n-skx"
2132       data: "plot-performance-trending-vpp-3n-skx"
2133       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '8T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
2134       parameters:
2135       - "result"
2136       layout: "plot-cpta"
2137
2138 # IPv4 - xxv710
2139
2140     - title: "VPP 2T1C IPv4 64B MRR Trending 3n-skx"
2141       output-file-name: "ip4-2t1c-xxv710-3n-skx"
2142       data: "plot-performance-trending-vpp-3n-skx"
2143       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T1C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2144       parameters:
2145       - "result"
2146       layout: "plot-cpta"
2147
2148     - title: "VPP 4T2C IPv4 64B MRR Trending 3n-skx"
2149       output-file-name: "ip4-4t2c-xxv710-3n-skx"
2150       data: "plot-performance-trending-vpp-3n-skx"
2151       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T2C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2152       parameters:
2153       - "result"
2154       layout: "plot-cpta"
2155
2156     - title: "VPP 8T4C IPv4 64B MRR Trending 3n-skx"
2157       output-file-name: "ip4-8t4c-xxv710-3n-skx"
2158       data: "plot-performance-trending-vpp-3n-skx"
2159       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '8T4C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2160       parameters:
2161       - "result"
2162       layout: "plot-cpta"
2163
2164     - title: "VPP 2T1C IPv4 64B MRR Trending 3n-skx"
2165       output-file-name: "ip4-feature-2t1c-xxv710-3n-skx"
2166       data: "plot-performance-trending-vpp-3n-skx"
2167       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '2T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
2168       parameters:
2169       - "result"
2170       layout: "plot-cpta"
2171
2172     - title: "VPP 4T2C IPv4 64B MRR Trending 3n-skx"
2173       output-file-name: "ip4-feature-4t2c-xxv710-3n-skx"
2174       data: "plot-performance-trending-vpp-3n-skx"
2175       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '4T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
2176       parameters:
2177       - "result"
2178       layout: "plot-cpta"
2179
2180     - title: "VPP 8T4C IPv4 64B MRR Trending 3n-skx"
2181       output-file-name: "ip4-feature-8t4c-xxv710-3n-skx"
2182       data: "plot-performance-trending-vpp-3n-skx"
2183       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '8T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
2184       parameters:
2185       - "result"
2186       layout: "plot-cpta"
2187
2188 # IPv4 Tunnels - x710
2189
2190     - title: "VPP 2T1C IPv4 Tunnels 64B MRR Trending 3n-skx"
2191       output-file-name: "ip4-tunnels-2t1c-x710-3n-skx"
2192       data: "plot-performance-trending-vpp-3n-skx"
2193       filter: "'NIC_Intel-X710' and '64B' and 'ENCAP' and 'MRR' and '2T1C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
2194       parameters:
2195       - "result"
2196       layout: "plot-cpta"
2197
2198     - title: "VPP 4T2C IPv4 Tunnels 64B MRR Trending 3n-skx"
2199       output-file-name: "ip4-tunnels-4t2c-x710-3n-skx"
2200       data: "plot-performance-trending-vpp-3n-skx"
2201       filter: "'NIC_Intel-X710' and '64B' and 'ENCAP' and 'MRR' and '4T2C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
2202       parameters:
2203       - "result"
2204       layout: "plot-cpta"
2205
2206     - title: "VPP 8T4C IPv4 Tunnels 64B MRR Trending 3n-skx"
2207       output-file-name: "ip4-tunnels-8t4c-x710-3n-skx"
2208       data: "plot-performance-trending-vpp-3n-skx"
2209       filter: "'NIC_Intel-X710' and '64B' and 'ENCAP' and 'MRR' and '8T4C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
2210       parameters:
2211       - "result"
2212       layout: "plot-cpta"
2213
2214 # IPv4 Tunnels - xxv710
2215
2216     - title: "VPP 2T1C IPv4 Tunnels 64B MRR Trending 3n-skx"
2217       output-file-name: "ip4-tunnels-2t1c-xxv710-3n-skx"
2218       data: "plot-performance-trending-vpp-3n-skx"
2219       filter: "'NIC_Intel-XXV710' and '64B' and 'ENCAP' and 'MRR' and '2T1C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
2220       parameters:
2221       - "result"
2222       layout: "plot-cpta"
2223
2224     - title: "VPP 4T2C IPv4 Tunnels 64B MRR Trending 3n-skx"
2225       output-file-name: "ip4-tunnels-4t2c-xxv710-3n-skx"
2226       data: "plot-performance-trending-vpp-3n-skx"
2227       filter: "'NIC_Intel-XXV710' and '64B' and 'ENCAP' and 'MRR' and '4T2C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
2228       parameters:
2229       - "result"
2230       layout: "plot-cpta"
2231
2232     - title: "VPP 8T4C IPv4 Tunnels 64B MRR Trending 3n-skx"
2233       output-file-name: "ip4-tunnels-8t4c-xxv710-3n-skx"
2234       data: "plot-performance-trending-vpp-3n-skx"
2235       filter: "'NIC_Intel-XXV710' and '64B' and 'ENCAP' and 'MRR' and '8T4C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
2236       parameters:
2237       - "result"
2238       layout: "plot-cpta"
2239
2240 # IPv6 - x710
2241
2242     - title: "VPP 2T1C IPv6 78B MRR Trending 3n-skx"
2243       output-file-name: "ip6-2t1c-x710-3n-skx"
2244       data: "plot-performance-trending-vpp-3n-skx"
2245       filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T1C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
2246       parameters:
2247       - "result"
2248       layout: "plot-cpta"
2249
2250     - title: "VPP 4T2C IPv6 78B MRR Trending 3n-skx"
2251       output-file-name: "ip6-4t2c-x710-3n-skx"
2252       data: "plot-performance-trending-vpp-3n-skx"
2253       filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T2C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
2254       parameters:
2255       - "result"
2256       layout: "plot-cpta"
2257
2258     - title: "VPP 8T4C IPv6 78B MRR Trending 3n-skx"
2259       output-file-name: "ip6-8t4c-x710-3n-skx"
2260       data: "plot-performance-trending-vpp-3n-skx"
2261       filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '8T4C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
2262       parameters:
2263       - "result"
2264       layout: "plot-cpta"
2265
2266 # IPv6 - xxv710
2267
2268     - title: "VPP 2T1C IPv6 78B MRR Trending 3n-skx"
2269       output-file-name: "ip6-2t1c-xxv710-3n-skx"
2270       data: "plot-performance-trending-vpp-3n-skx"
2271       filter: "'NIC_Intel-XXV710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T1C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
2272       parameters:
2273       - "result"
2274       layout: "plot-cpta"
2275
2276     - title: "VPP 4T2C IPv6 78B MRR Trending 3n-skx"
2277       output-file-name: "ip6-4t2c-xxv710-3n-skx"
2278       data: "plot-performance-trending-vpp-3n-skx"
2279       filter: "'NIC_Intel-XXV710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T2C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
2280       parameters:
2281       - "result"
2282       layout: "plot-cpta"
2283
2284     - title: "VPP 8T4C IPv6 78B MRR Trending 3n-skx"
2285       output-file-name: "ip6-8t4c-xxv710-3n-skx"
2286       data: "plot-performance-trending-vpp-3n-skx"
2287       filter: "'NIC_Intel-XXV710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '8T4C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
2288       parameters:
2289       - "result"
2290       layout: "plot-cpta"
2291
2292 # Container memif - x710, 64B
2293
2294     - title: "VPP 2T1C L2 Container memif 64B MRR Trending 3n-skx"
2295       output-file-name: "container-memif-l2-2t1c-x710-3n-skx"
2296       data: "plot-performance-trending-vpp-3n-skx"
2297       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '2T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2298       parameters:
2299       - "result"
2300       layout: "plot-cpta"
2301
2302     - title: "VPP 4T2C L2 Container memif 64B MRR Trending 3n-skx"
2303       output-file-name: "container-memif-l2-4t2c-x710-3n-skx"
2304       data: "plot-performance-trending-vpp-3n-skx"
2305       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '4T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2306       parameters:
2307       - "result"
2308       layout: "plot-cpta"
2309
2310     - title: "VPP 8T4C L2 Container memif 64B MRR Trending 3n-skx"
2311       output-file-name: "container-memif-l2-8t4c-x710-3n-skx"
2312       data: "plot-performance-trending-vpp-3n-skx"
2313       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '8T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2314       parameters:
2315       - "result"
2316       layout: "plot-cpta"
2317
2318 # Container memif - xxv710, 64B
2319
2320     - title: "VPP 2T1C L2 Container memif 64B MRR Trending 3n-skx"
2321       output-file-name: "container-memif-l2-2t1c-xxv710-3n-skx"
2322       data: "plot-performance-trending-vpp-3n-skx"
2323       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'BASE' and '2T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2324       parameters:
2325       - "result"
2326       layout: "plot-cpta"
2327
2328     - title: "VPP 4T2C L2 Container memif 64B MRR Trending 3n-skx"
2329       output-file-name: "container-memif-l2-4t2c-xxv710-3n-skx"
2330       data: "plot-performance-trending-vpp-3n-skx"
2331       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'BASE' and '4T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2332       parameters:
2333       - "result"
2334       layout: "plot-cpta"
2335
2336     - title: "VPP 8T4C L2 Container memif 64B MRR Trending 3n-skx"
2337       output-file-name: "container-memif-l2-8t4c-xxv710-3n-skx"
2338       data: "plot-performance-trending-vpp-3n-skx"
2339       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'BASE' and '8T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2340       parameters:
2341       - "result"
2342       layout: "plot-cpta"
2343
2344 # Container memif - x710, IMIX
2345
2346     - title: "VPP 2T1C L2 Container memif IMIX MRR Trending 3n-skx"
2347       output-file-name: "container-memif-imix-l2-2t1c-x710-3n-skx"
2348       data: "plot-performance-trending-vpp-3n-skx"
2349       filter: "'NIC_Intel-X710' and 'MRR' and 'IMIX' and 'BASE' and '2T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2350       parameters:
2351       - "result"
2352       layout: "plot-cpta"
2353
2354     - title: "VPP 4T2C L2 Container memif IMIX MRR Trending 3n-skx"
2355       output-file-name: "container-memif-imix-l2-4t2c-x710-3n-skx"
2356       data: "plot-performance-trending-vpp-3n-skx"
2357       filter: "'NIC_Intel-X710' and 'MRR' and 'IMIX' and 'BASE' and '4T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2358       parameters:
2359       - "result"
2360       layout: "plot-cpta"
2361
2362     - title: "VPP 8T4C L2 Container memif IMIX MRR Trending 3n-skx"
2363       output-file-name: "container-memif-imix-l2-8t4c-x710-3n-skx"
2364       data: "plot-performance-trending-vpp-3n-skx"
2365       filter: "'NIC_Intel-X710' and 'MRR' and 'IMIX' and 'BASE' and '8T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2366       parameters:
2367       - "result"
2368       layout: "plot-cpta"
2369
2370 # Container memif - xxv710, IMIX
2371
2372     - title: "VPP 2T1C L2 Container memif IMIX MRR Trending 3n-skx"
2373       output-file-name: "container-memif-imix-l2-2t1c-xxv710-3n-skx"
2374       data: "plot-performance-trending-vpp-3n-skx"
2375       filter: "'NIC_Intel-XXV710' and 'MRR' and 'IMIX' and 'BASE' and '2T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2376       parameters:
2377       - "result"
2378       layout: "plot-cpta"
2379
2380     - title: "VPP 4T2C L2 Container memif IMIX MRR Trending 3n-skx"
2381       output-file-name: "container-memif-imix-l2-4t2c-xxv710-3n-skx"
2382       data: "plot-performance-trending-vpp-3n-skx"
2383       filter: "'NIC_Intel-XXV710' and 'MRR' and 'IMIX' and 'BASE' and '4T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2384       parameters:
2385       - "result"
2386       layout: "plot-cpta"
2387
2388     - title: "VPP 8T4C L2 Container memif IMIX MRR Trending 3n-skx"
2389       output-file-name: "container-memif-imix-l2-8t4c-xxv710-3n-skx"
2390       data: "plot-performance-trending-vpp-3n-skx"
2391       filter: "'NIC_Intel-XXV710' and 'MRR' and 'IMIX' and 'BASE' and '8T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
2392       parameters:
2393       - "result"
2394       layout: "plot-cpta"
2395
2396 # VM vhost - x710, ethip4, 64B
2397
2398     - title: "VPP 2T1C VM vhost ethip4 64B MRR Trending 3n-skx"
2399       output-file-name: "vm-vhost-ethip4-2t1c-x710-3n-skx"
2400       data: "plot-performance-trending-vpp-3n-skx"
2401       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2402       parameters:
2403       - "result"
2404       layout: "plot-cpta"
2405
2406     - title: "VPP 4T2C VM vhost ethip4 64B MRR Trending 3n-skx"
2407       output-file-name: "vm-vhost-ethip4-4t2c-x710-3n-skx"
2408       data: "plot-performance-trending-vpp-3n-skx"
2409       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2410       parameters:
2411       - "result"
2412       layout: "plot-cpta"
2413
2414     - title: "VPP 8T4C VM vhost ethip4 64B MRR Trending 3n-skx"
2415       output-file-name: "vm-vhost-ethip4-8t4c-x710-3n-skx"
2416       data: "plot-performance-trending-vpp-3n-skx"
2417       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '8T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2418       parameters:
2419       - "result"
2420       layout: "plot-cpta"
2421
2422 # VM vhost - xxv710, ethip4, 64B
2423
2424     - title: "VPP 2T1C VM vhost ethip4 64B MRR Trending 3n-skx"
2425       output-file-name: "vm-vhost-ethip4-2t1c-xxv710-3n-skx"
2426       data: "plot-performance-trending-vpp-3n-skx"
2427       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '2T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2428       parameters:
2429       - "result"
2430       layout: "plot-cpta"
2431
2432     - title: "VPP 4T2C VM vhost ethip4 64B MRR Trending 3n-skx"
2433       output-file-name: "vm-vhost-ethip4-4t2c-xxv710-3n-skx"
2434       data: "plot-performance-trending-vpp-3n-skx"
2435       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '4T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2436       parameters:
2437       - "result"
2438       layout: "plot-cpta"
2439
2440     - title: "VPP 8T4C VM vhost ethip4 64B MRR Trending 3n-skx"
2441       output-file-name: "vm-vhost-ethip4-8t4c-xxv710-3n-skx"
2442       data: "plot-performance-trending-vpp-3n-skx"
2443       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '8T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2444       parameters:
2445       - "result"
2446       layout: "plot-cpta"
2447
2448 # VM vhost - x710, ethip4, IMIX
2449
2450     - title: "VPP 2T1C VM vhost ethip4 IMIX MRR Trending 3n-skx"
2451       output-file-name: "vm-vhost-imix-ethip4-2t1c-x710-3n-skx"
2452       data: "plot-performance-trending-vpp-3n-skx"
2453       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2454       parameters:
2455       - "result"
2456       layout: "plot-cpta"
2457
2458     - title: "VPP 4T2C VM vhost ethip4 IMIX MRR Trending 3n-skx"
2459       output-file-name: "vm-vhost-imix-ethip4-4t2c-x710-3n-skx"
2460       data: "plot-performance-trending-vpp-3n-skx"
2461       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2462       parameters:
2463       - "result"
2464       layout: "plot-cpta"
2465
2466     - title: "VPP 8T4C VM vhost ethip4 IMIX MRR Trending 3n-skx"
2467       output-file-name: "vm-vhost-imix-ethip4-8t4c-x710-3n-skx"
2468       data: "plot-performance-trending-vpp-3n-skx"
2469       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '8T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2470       parameters:
2471       - "result"
2472       layout: "plot-cpta"
2473
2474 # VM vhost - xxv710, ethip4, IMIX
2475
2476     - title: "VPP 2T1C VM vhost ethip4 IMIX MRR Trending 3n-skx"
2477       output-file-name: "vm-vhost-imix-ethip4-2t1c-xxv710-3n-skx"
2478       data: "plot-performance-trending-vpp-3n-skx"
2479       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '2T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2480       parameters:
2481       - "result"
2482       layout: "plot-cpta"
2483
2484     - title: "VPP 4T2C VM vhost ethip4 IMIX MRR Trending 3n-skx"
2485       output-file-name: "vm-vhost-imix-ethip4-4t2c-xxv710-3n-skx"
2486       data: "plot-performance-trending-vpp-3n-skx"
2487       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '4T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2488       parameters:
2489       - "result"
2490       layout: "plot-cpta"
2491
2492     - title: "VPP 8T4C VM vhost ethip4 IMIX MRR Trending 3n-skx"
2493       output-file-name: "vm-vhost-imix-ethip4-8t4c-xxv710-3n-skx"
2494       data: "plot-performance-trending-vpp-3n-skx"
2495       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '8T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
2496       parameters:
2497       - "result"
2498       layout: "plot-cpta"
2499
2500 # VM vhost - x710, eth, 64B
2501
2502     - title: "VPP 2T1C VM vhost eth 64B MRR Trending 3n-skx"
2503       output-file-name: "vm-vhost-eth-2t1c-x710-3n-skx"
2504       data: "plot-performance-trending-vpp-3n-skx"
2505       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2506
2507       parameters:
2508       - "result"
2509       layout: "plot-cpta"
2510
2511     - title: "VPP 4T2C VM vhost eth 64B MRR Trending 3n-skx"
2512       output-file-name: "vm-vhost-eth-4t2c-x710-3n-skx"
2513       data: "plot-performance-trending-vpp-3n-skx"
2514       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2515       parameters:
2516       - "result"
2517       layout: "plot-cpta"
2518
2519     - title: "VPP 8T4C VM vhost eth 64B MRR Trending 3n-skx"
2520       output-file-name: "vm-vhost-eth-8t4c-x710-3n-skx"
2521       data: "plot-performance-trending-vpp-3n-skx"
2522       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '8T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2523       parameters:
2524       - "result"
2525       layout: "plot-cpta"
2526
2527 # VM vhost - xxv710, eth, 64B
2528
2529     - title: "VPP 2T1C VM vhost eth 64B MRR Trending 3n-skx"
2530       output-file-name: "vm-vhost-eth-2t1c-xxv710-3n-skx"
2531       data: "plot-performance-trending-vpp-3n-skx"
2532       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '2T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2533
2534       parameters:
2535       - "result"
2536       layout: "plot-cpta"
2537
2538     - title: "VPP 4T2C VM vhost eth 64B MRR Trending 3n-skx"
2539       output-file-name: "vm-vhost-eth-4t2c-xxv710-3n-skx"
2540       data: "plot-performance-trending-vpp-3n-skx"
2541       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '4T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2542       parameters:
2543       - "result"
2544       layout: "plot-cpta"
2545
2546     - title: "VPP 8T4C VM vhost eth 64B MRR Trending 3n-skx"
2547       output-file-name: "vm-vhost-eth-8t4c-xxv710-3n-skx"
2548       data: "plot-performance-trending-vpp-3n-skx"
2549       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '8T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2550       parameters:
2551       - "result"
2552       layout: "plot-cpta"
2553
2554 # VM vhost - x710, eth, IMIX
2555
2556     - title: "VPP 2T1C VM vhost eth IMIX MRR Trending 3n-skx"
2557       output-file-name: "vm-vhost-imix-eth-2t1c-x710-3n-skx"
2558       data: "plot-performance-trending-vpp-3n-skx"
2559       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2560
2561       parameters:
2562       - "result"
2563       layout: "plot-cpta"
2564
2565     - title: "VPP 4T2C VM vhost eth IMIX MRR Trending 3n-skx"
2566       output-file-name: "vm-vhost-imix-eth-4t2c-x710-3n-skx"
2567       data: "plot-performance-trending-vpp-3n-skx"
2568       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2569       parameters:
2570       - "result"
2571       layout: "plot-cpta"
2572
2573     - title: "VPP 8T4C VM vhost eth IMIX MRR Trending 3n-skx"
2574       output-file-name: "vm-vhost-imix-eth-8t4c-x710-3n-skx"
2575       data: "plot-performance-trending-vpp-3n-skx"
2576       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '8T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2577       parameters:
2578       - "result"
2579       layout: "plot-cpta"
2580
2581 # VM vhost - xxv710, eth, IMIX
2582
2583     - title: "VPP 2T1C VM vhost eth IMIX MRR Trending 3n-skx"
2584       output-file-name: "vm-vhost-imix-eth-2t1c-xxv710-3n-skx"
2585       data: "plot-performance-trending-vpp-3n-skx"
2586       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '2T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2587
2588       parameters:
2589       - "result"
2590       layout: "plot-cpta"
2591
2592     - title: "VPP 4T2C VM vhost eth IMIX MRR Trending 3n-skx"
2593       output-file-name: "vm-vhost-imix-eth-4t2c-xxv710-3n-skx"
2594       data: "plot-performance-trending-vpp-3n-skx"
2595       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '4T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2596       parameters:
2597       - "result"
2598       layout: "plot-cpta"
2599
2600     - title: "VPP 8T4C VM vhost eth IMIX MRR Trending 3n-skx"
2601       output-file-name: "vm-vhost-imix-eth-8t4c-xxv710-3n-skx"
2602       data: "plot-performance-trending-vpp-3n-skx"
2603       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '8T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
2604       parameters:
2605       - "result"
2606       layout: "plot-cpta"
2607
2608 # Link Bonding - x710
2609
2610     - title: "VPP 2T1C Link Bonding 64B MRR Trending 3n-skx"
2611       output-file-name: "lb-64b-2t1c-x710-3n-skx"
2612       data: "plot-performance-trending-vpp-3n-skx"
2613       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T1C' and 'LBOND'"
2614       parameters:
2615       - "result"
2616       layout: "plot-cpta"
2617
2618     - title: "VPP 4T2C Link Bonding 64B MRR Trending 3n-skx"
2619       output-file-name: "lb-64b-4t2c-x710-3n-skx"
2620       data: "plot-performance-trending-vpp-3n-skx"
2621       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T2C' and 'LBOND'"
2622       parameters:
2623       - "result"
2624       layout: "plot-cpta"
2625
2626     - title: "VPP 8T4C Link Bonding 64B MRR Trending 3n-skx"
2627       output-file-name: "lb-64b-8t4c-x710-3n-skx"
2628       data: "plot-performance-trending-vpp-3n-skx"
2629       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '8T4C' and 'LBOND'"
2630       parameters:
2631       - "result"
2632       layout: "plot-cpta"
2633
2634     - title: "VPP 2T1C Link Bonding IMIX MRR Trending 3n-skx"
2635       output-file-name: "lb-imix-2t1c-x710-3n-skx"
2636       data: "plot-performance-trending-vpp-3n-skx"
2637       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T1C' and 'LBOND'"
2638       parameters:
2639       - "result"
2640       layout: "plot-cpta"
2641
2642     - title: "VPP 4T2C Link Bonding IMIX MRR Trending 3n-skx"
2643       output-file-name: "lb-imix-4t2c-x710-3n-skx"
2644       data: "plot-performance-trending-vpp-3n-skx"
2645       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T2C' and 'LBOND'"
2646       parameters:
2647       - "result"
2648       layout: "plot-cpta"
2649
2650     - title: "VPP 8T4C Link Bonding IMIX MRR Trending 3n-skx"
2651       output-file-name: "lb-imix-8t4c-x710-3n-skx"
2652       data: "plot-performance-trending-vpp-3n-skx"
2653       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '8T4C' and 'LBOND'"
2654       parameters:
2655       - "result"
2656       layout: "plot-cpta"
2657
2658 # Link Bonding - xxv710
2659
2660     - title: "VPP 2T1C Link Bonding 64B MRR Trending 3n-skx"
2661       output-file-name: "lb-64b-2t1c-xxv710-3n-skx"
2662       data: "plot-performance-trending-vpp-3n-skx"
2663       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '2T1C' and 'LBOND'"
2664       parameters:
2665       - "result"
2666       layout: "plot-cpta"
2667
2668     - title: "VPP 4T2C Link Bonding 64B MRR Trending 3n-skx"
2669       output-file-name: "lb-64b-4t2c-xxv710-3n-skx"
2670       data: "plot-performance-trending-vpp-3n-skx"
2671       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '4T2C' and 'LBOND'"
2672       parameters:
2673       - "result"
2674       layout: "plot-cpta"
2675
2676     - title: "VPP 8T4C Link Bonding 64B MRR Trending 3n-skx"
2677       output-file-name: "lb-64b-8t4c-xxv710-3n-skx"
2678       data: "plot-performance-trending-vpp-3n-skx"
2679       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '8T4C' and 'LBOND'"
2680       parameters:
2681       - "result"
2682       layout: "plot-cpta"
2683
2684     - title: "VPP 2T1C Link Bonding IMIX MRR Trending 3n-skx"
2685       output-file-name: "lb-imix-2t1c-xxv710-3n-skx"
2686       data: "plot-performance-trending-vpp-3n-skx"
2687       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '2T1C' and 'LBOND'"
2688       parameters:
2689       - "result"
2690       layout: "plot-cpta"
2691
2692     - title: "VPP 4T2C Link Bonding IMIX MRR Trending 3n-skx"
2693       output-file-name: "lb-imix-4t2c-xxv710-3n-skx"
2694       data: "plot-performance-trending-vpp-3n-skx"
2695       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '4T2C' and 'LBOND'"
2696       parameters:
2697       - "result"
2698       layout: "plot-cpta"
2699
2700     - title: "VPP 8T4C Link Bonding IMIX MRR Trending 3n-skx"
2701       output-file-name: "lb-imix-8t4c-xxv710-3n-skx"
2702       data: "plot-performance-trending-vpp-3n-skx"
2703       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '8T4C' and 'LBOND'"
2704       parameters:
2705       - "result"
2706       layout: "plot-cpta"
2707
2708 # DPDK - x710 - 64B
2709
2710     - title: "DPDK 2T1C 64B MRR Trending 3n-skx"
2711       output-file-name: "dpdk-64b-2t1c-x710-3n-skx"
2712       data: "plot-performance-trending-dpdk-3n-skx"
2713       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T1C' and 'DPDK'"
2714       parameters:
2715       - "result"
2716       layout: "plot-cpta"
2717
2718     - title: "DPDK 4T2C 64B MRR Trending 3n-skx"
2719       output-file-name: "dpdk-64b-4t2c-x710-3n-skx"
2720       data: "plot-performance-trending-dpdk-3n-skx"
2721       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T2C' and 'DPDK'"
2722       parameters:
2723       - "result"
2724       layout: "plot-cpta"
2725
2726     - title: "DPDK 8T4C 64B MRR Trending 3n-skx"
2727       output-file-name: "dpdk-64b-8t4c-x710-3n-skx"
2728       data: "plot-performance-trending-dpdk-3n-skx"
2729       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '8T4C' and 'DPDK'"
2730       parameters:
2731       - "result"
2732       layout: "plot-cpta"
2733
2734 # DPDK - x710 - IMIX
2735
2736     - title: "DPDK 2T1C IMIX MRR Trending 3n-skx"
2737       output-file-name: "dpdk-imix-2t1c-x710-3n-skx"
2738       data: "plot-performance-trending-dpdk-3n-skx"
2739       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T1C' and 'DPDK'"
2740       parameters:
2741       - "result"
2742       layout: "plot-cpta"
2743
2744     - title: "DPDK 4T2C IMIX MRR Trending 3n-skx"
2745       output-file-name: "dpdk-imix-4t2c-x710-3n-skx"
2746       data: "plot-performance-trending-dpdk-3n-skx"
2747       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T2C' and 'DPDK'"
2748       parameters:
2749       - "result"
2750       layout: "plot-cpta"
2751
2752     - title: "DPDK 8T4C IMIX MRR Trending 3n-skx"
2753       output-file-name: "dpdk-imix-8t4c-x710-3n-skx"
2754       data: "plot-performance-trending-dpdk-3n-skx"
2755       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '8T4C' and 'DPDK'"
2756       parameters:
2757       - "result"
2758       layout: "plot-cpta"
2759
2760 # DPDK - xxv710 - 64B
2761
2762     - title: "DPDK 2T1C 64B MRR Trending 3n-skx"
2763       output-file-name: "dpdk-64b-2t1c-xxv710-3n-skx"
2764       data: "plot-performance-trending-dpdk-3n-skx"
2765       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '2T1C' and 'DPDK'"
2766       parameters:
2767       - "result"
2768       layout: "plot-cpta"
2769
2770     - title: "DPDK 4T2C 64B MRR Trending 3n-skx"
2771       output-file-name: "dpdk-64b-4t2c-xxv710-3n-skx"
2772       data: "plot-performance-trending-dpdk-3n-skx"
2773       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '4T2C' and 'DPDK'"
2774       parameters:
2775       - "result"
2776       layout: "plot-cpta"
2777
2778     - title: "DPDK 8T4C 64B MRR Trending 3n-skx"
2779       output-file-name: "dpdk-64b-8t4c-xxv710-3n-skx"
2780       data: "plot-performance-trending-dpdk-3n-skx"
2781       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '8T4C' and 'DPDK'"
2782       parameters:
2783       - "result"
2784       layout: "plot-cpta"
2785
2786 # DPDK - xxv710 - IMIX
2787
2788     - title: "DPDK 2T1C IMIX MRR Trending 3n-skx"
2789       output-file-name: "dpdk-imix-2t1c-xxv710-3n-skx"
2790       data: "plot-performance-trending-dpdk-3n-skx"
2791       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '2T1C' and 'DPDK'"
2792       parameters:
2793       - "result"
2794       layout: "plot-cpta"
2795
2796     - title: "DPDK 4T2C IMIX MRR Trending 3n-skx"
2797       output-file-name: "dpdk-imix-4t2c-xxv710-3n-skx"
2798       data: "plot-performance-trending-dpdk-3n-skx"
2799       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '4T2C' and 'DPDK'"
2800       parameters:
2801       - "result"
2802       layout: "plot-cpta"
2803
2804     - title: "DPDK 8T4C IMIX MRR Trending 3n-skx"
2805       output-file-name: "dpdk-imix-8t4c-xxv710-3n-skx"
2806       data: "plot-performance-trending-dpdk-3n-skx"
2807       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '8T4C' and 'DPDK'"
2808       parameters:
2809       - "result"
2810       layout: "plot-cpta"
2811
2812 ################################################################################
2813 # 2n-skx
2814
2815 # L2 - x710
2816
2817     - title: "VPP 2T1C L2 64B MRR Trending 2n-skx"
2818       output-file-name: "l2-2t1c-x710-2n-skx"
2819       data: "plot-performance-trending-vpp-2n-skx"
2820       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2821       parameters:
2822       - "result"
2823       layout: "plot-cpta"
2824
2825     - title: "VPP 4T2C L2 64B MRR Trending 2n-skx"
2826       output-file-name: "l2-4t2c-x710-2n-skx"
2827       data: "plot-performance-trending-vpp-2n-skx"
2828       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2829       parameters:
2830       - "result"
2831       layout: "plot-cpta"
2832
2833     - title: "VPP 8T4C L2 64B MRR Trending 2n-skx"
2834       output-file-name: "l2-8t4c-x710-2n-skx"
2835       data: "plot-performance-trending-vpp-2n-skx"
2836       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '8T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2837       parameters:
2838       - "result"
2839       layout: "plot-cpta"
2840
2841     - title: "VPP 2T1C L2 64B MRR Trending 2n-skx"
2842       output-file-name: "l2-feature-2t1c-x710-2n-skx"
2843       data: "plot-performance-trending-vpp-2n-skx"
2844       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '2T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2845       parameters:
2846       - "result"
2847       layout: "plot-cpta"
2848
2849     - title: "VPP 4T2C L2 64B MRR Trending 2n-skx"
2850       output-file-name: "l2-feature-4t2c-x710-2n-skx"
2851       data: "plot-performance-trending-vpp-2n-skx"
2852       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '4T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2853       parameters:
2854       - "result"
2855       layout: "plot-cpta"
2856
2857     - title: "VPP 8T4C L2 64B MRR Trending 2n-skx"
2858       output-file-name: "l2-feature-8t4c-x710-2n-skx"
2859       data: "plot-performance-trending-vpp-2n-skx"
2860       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '8T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2861       parameters:
2862       - "result"
2863       layout: "plot-cpta"
2864
2865 # L2 - xxv710
2866
2867     - title: "VPP 2T1C L2 64B MRR Trending 2n-skx"
2868       output-file-name: "l2-2t1c-xxv710-2n-skx"
2869       data: "plot-performance-trending-vpp-2n-skx"
2870       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2871       parameters:
2872       - "result"
2873       layout: "plot-cpta"
2874
2875     - title: "VPP 4T2C L2 64B MRR Trending 2n-skx"
2876       output-file-name: "l2-4t2c-xxv710-2n-skx"
2877       data: "plot-performance-trending-vpp-2n-skx"
2878       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2879       parameters:
2880       - "result"
2881       layout: "plot-cpta"
2882
2883     - title: "VPP 8T4C L2 64B MRR Trending 2n-skx"
2884       output-file-name: "l2-8t4c-xxv710-2n-skx"
2885       data: "plot-performance-trending-vpp-2n-skx"
2886       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '8T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2887       parameters:
2888       - "result"
2889       layout: "plot-cpta"
2890
2891     - title: "VPP 2T1C L2 64B MRR Trending 2n-skx"
2892       output-file-name: "l2-feature-2t1c-xxv710-2n-skx"
2893       data: "plot-performance-trending-vpp-2n-skx"
2894       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '2T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2895       parameters:
2896       - "result"
2897       layout: "plot-cpta"
2898
2899     - title: "VPP 4T2C L2 64B MRR Trending 2n-skx"
2900       output-file-name: "l2-feature-4t2c-xxv710-2n-skx"
2901       data: "plot-performance-trending-vpp-2n-skx"
2902       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '4T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2903       parameters:
2904       - "result"
2905       layout: "plot-cpta"
2906
2907     - title: "VPP 8T4C L2 64B MRR Trending 2n-skx"
2908       output-file-name: "l2-feature-8t4c-xxv710-2n-skx"
2909       data: "plot-performance-trending-vpp-2n-skx"
2910       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '8T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
2911       parameters:
2912       - "result"
2913       layout: "plot-cpta"
2914
2915 # IPv4 - x710
2916
2917     - title: "VPP 2T1C IPv4 64B MRR Trending 2n-skx"
2918       output-file-name: "ip4-2t1c-x710-2n-skx"
2919       data: "plot-performance-trending-vpp-2n-skx"
2920       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T1C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2921       parameters:
2922       - "result"
2923       layout: "plot-cpta"
2924
2925     - title: "VPP 4T2C IPv4 64B MRR Trending 2n-skx"
2926       output-file-name: "ip4-4t2c-x710-2n-skx"
2927       data: "plot-performance-trending-vpp-2n-skx"
2928       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T2C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2929       parameters:
2930       - "result"
2931       layout: "plot-cpta"
2932
2933     - title: "VPP 8T4C IPv4 64B MRR Trending 2n-skx"
2934       output-file-name: "ip4-8t4c-x710-2n-skx"
2935       data: "plot-performance-trending-vpp-2n-skx"
2936       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '8T4C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2937       parameters:
2938       - "result"
2939       layout: "plot-cpta"
2940
2941     - title: "VPP 2T1C IPv4 64B MRR Trending 2n-skx"
2942       output-file-name: "ip4-feature-2t1c-x710-2n-skx"
2943       data: "plot-performance-trending-vpp-2n-skx"
2944       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '2T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
2945       parameters:
2946       - "result"
2947       layout: "plot-cpta"
2948
2949     - title: "VPP 4T2C IPv4 64B MRR Trending 2n-skx"
2950       output-file-name: "ip4-feature-4t2c-x710-2n-skx"
2951       data: "plot-performance-trending-vpp-2n-skx"
2952       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '4T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
2953       parameters:
2954       - "result"
2955       layout: "plot-cpta"
2956
2957     - title: "VPP 8T4C IPv4 64B MRR Trending 2n-skx"
2958       output-file-name: "ip4-feature-8t4c-x710-2n-skx"
2959       data: "plot-performance-trending-vpp-2n-skx"
2960       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '8T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
2961       parameters:
2962       - "result"
2963       layout: "plot-cpta"
2964
2965 # IPv4 - xxv710
2966
2967     - title: "VPP 2T1C IPv4 64B MRR Trending 2n-skx"
2968       output-file-name: "ip4-2t1c-xxv710-2n-skx"
2969       data: "plot-performance-trending-vpp-2n-skx"
2970       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T1C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2971       parameters:
2972       - "result"
2973       layout: "plot-cpta"
2974
2975     - title: "VPP 4T2C IPv4 64B MRR Trending 2n-skx"
2976       output-file-name: "ip4-4t2c-xxv710-2n-skx"
2977       data: "plot-performance-trending-vpp-2n-skx"
2978       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T2C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2979       parameters:
2980       - "result"
2981       layout: "plot-cpta"
2982
2983     - title: "VPP 8T4C IPv4 64B MRR Trending 2n-skx"
2984       output-file-name: "ip4-8t4c-xxv710-2n-skx"
2985       data: "plot-performance-trending-vpp-2n-skx"
2986       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '8T4C' and 'IP4FWD' and not 'FEATURE' and not 'IPSEC' and not 'VHOST'"
2987       parameters:
2988       - "result"
2989       layout: "plot-cpta"
2990
2991     - title: "VPP 2T1C IPv4 64B MRR Trending 2n-skx"
2992       output-file-name: "ip4-feature-2t1c-xxv710-2n-skx"
2993       data: "plot-performance-trending-vpp-2n-skx"
2994       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '2T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
2995       parameters:
2996       - "result"
2997       layout: "plot-cpta"
2998
2999     - title: "VPP 4T2C IPv4 64B MRR Trending 2n-skx"
3000       output-file-name: "ip4-feature-4t2c-xxv710-2n-skx"
3001       data: "plot-performance-trending-vpp-2n-skx"
3002       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '4T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
3003       parameters:
3004       - "result"
3005       layout: "plot-cpta"
3006
3007     - title: "VPP 8T4C IPv4 64B MRR Trending 2n-skx"
3008       output-file-name: "ip4-feature-8t4c-xxv710-2n-skx"
3009       data: "plot-performance-trending-vpp-2n-skx"
3010       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'FEATURE' and '8T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
3011       parameters:
3012       - "result"
3013       layout: "plot-cpta"
3014
3015 # IPv4 Tunnels - x710
3016
3017     - title: "VPP 2T1C IPv4 Tunnels 64B MRR Trending 2n-skx"
3018       output-file-name: "ip4-tunnels-2t1c-x710-2n-skx"
3019       data: "plot-performance-trending-vpp-2n-skx"
3020       filter: "'NIC_Intel-X710' and '64B' and 'ENCAP' and 'MRR' and '2T1C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
3021       parameters:
3022       - "result"
3023       layout: "plot-cpta"
3024
3025     - title: "VPP 4T2C IPv4 Tunnels 64B MRR Trending 2n-skx"
3026       output-file-name: "ip4-tunnels-4t2c-x710-2n-skx"
3027       data: "plot-performance-trending-vpp-2n-skx"
3028       filter: "'NIC_Intel-X710' and '64B' and 'ENCAP' and 'MRR' and '4T2C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
3029       parameters:
3030       - "result"
3031       layout: "plot-cpta"
3032
3033     - title: "VPP 8T4C IPv4 Tunnels 64B MRR Trending 2n-skx"
3034       output-file-name: "ip4-tunnels-8t4c-x710-2n-skx"
3035       data: "plot-performance-trending-vpp-2n-skx"
3036       filter: "'NIC_Intel-X710' and '64B' and 'ENCAP' and 'MRR' and '8T4C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
3037       parameters:
3038       - "result"
3039       layout: "plot-cpta"
3040
3041 # IPv4 Tunnels - xxv710
3042
3043     - title: "VPP 2T1C IPv4 Tunnels 64B MRR Trending 2n-skx"
3044       output-file-name: "ip4-tunnels-2t1c-xxv710-2n-skx"
3045       data: "plot-performance-trending-vpp-2n-skx"
3046       filter: "'NIC_Intel-XXV710' and '64B' and 'ENCAP' and 'MRR' and '2T1C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
3047       parameters:
3048       - "result"
3049       layout: "plot-cpta"
3050
3051     - title: "VPP 4T2C IPv4 Tunnels 64B MRR Trending 2n-skx"
3052       output-file-name: "ip4-tunnels-4t2c-xxv710-2n-skx"
3053       data: "plot-performance-trending-vpp-2n-skx"
3054       filter: "'NIC_Intel-XXV710' and '64B' and 'ENCAP' and 'MRR' and '4T2C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
3055       parameters:
3056       - "result"
3057       layout: "plot-cpta"
3058
3059     - title: "VPP 8T4C IPv4 Tunnels 64B MRR Trending 2n-skx"
3060       output-file-name: "ip4-tunnels-8t4c-xxv710-2n-skx"
3061       data: "plot-performance-trending-vpp-2n-skx"
3062       filter: "'NIC_Intel-XXV710' and '64B' and 'ENCAP' and 'MRR' and '8T4C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
3063       parameters:
3064       - "result"
3065       layout: "plot-cpta"
3066
3067 # IPv6 - x710
3068
3069     - title: "VPP 2T1C IPv6 78B MRR Trending 2n-skx"
3070       output-file-name: "ip6-2t1c-x710-2n-skx"
3071       data: "plot-performance-trending-vpp-2n-skx"
3072       filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T1C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
3073       parameters:
3074       - "result"
3075       layout: "plot-cpta"
3076
3077     - title: "VPP 4T2C IPv6 78B MRR Trending 2n-skx"
3078       output-file-name: "ip6-4t2c-x710-2n-skx"
3079       data: "plot-performance-trending-vpp-2n-skx"
3080       filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T2C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
3081       parameters:
3082       - "result"
3083       layout: "plot-cpta"
3084
3085     - title: "VPP 8T4C IPv6 78B MRR Trending 2n-skx"
3086       output-file-name: "ip6-8t4c-x710-2n-skx"
3087       data: "plot-performance-trending-vpp-2n-skx"
3088       filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '8T4C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
3089       parameters:
3090       - "result"
3091       layout: "plot-cpta"
3092
3093 # IPv6 - xxv710
3094
3095     - title: "VPP 2T1C IPv6 78B MRR Trending 2n-skx"
3096       output-file-name: "ip6-2t1c-xxv710-2n-skx"
3097       data: "plot-performance-trending-vpp-2n-skx"
3098       filter: "'NIC_Intel-XXV710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T1C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
3099       parameters:
3100       - "result"
3101       layout: "plot-cpta"
3102
3103     - title: "VPP 4T2C IPv6 78B MRR Trending 2n-skx"
3104       output-file-name: "ip6-4t2c-xxv710-2n-skx"
3105       data: "plot-performance-trending-vpp-2n-skx"
3106       filter: "'NIC_Intel-XXV710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T2C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
3107       parameters:
3108       - "result"
3109       layout: "plot-cpta"
3110
3111     - title: "VPP 8T4C IPv6 78B MRR Trending 2n-skx"
3112       output-file-name: "ip6-8t4c-xxv710-2n-skx"
3113       data: "plot-performance-trending-vpp-2n-skx"
3114       filter: "'NIC_Intel-XXV710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '8T4C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
3115       parameters:
3116       - "result"
3117       layout: "plot-cpta"
3118
3119 # Container memif - x710, 64B
3120
3121     - title: "VPP 2T1C L2 Container memif 64B MRR Trending 2n-skx"
3122       output-file-name: "container-memif-l2-2t1c-x710-2n-skx"
3123       data: "plot-performance-trending-vpp-2n-skx"
3124       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '2T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
3125       parameters:
3126       - "result"
3127       layout: "plot-cpta"
3128
3129     - title: "VPP 4T2C L2 Container memif 64B MRR Trending 2n-skx"
3130       output-file-name: "container-memif-l2-4t2c-x710-2n-skx"
3131       data: "plot-performance-trending-vpp-2n-skx"
3132       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '4T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
3133       parameters:
3134       - "result"
3135       layout: "plot-cpta"
3136
3137     - title: "VPP 8T4C L2 Container memif 64B MRR Trending 2n-skx"
3138       output-file-name: "container-memif-l2-8t4c-x710-2n-skx"
3139       data: "plot-performance-trending-vpp-2n-skx"
3140       filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '8T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
3141       parameters:
3142       - "result"
3143       layout: "plot-cpta"
3144
3145 # Container memif - xxv710, 64B
3146
3147     - title: "VPP 2T1C L2 Container memif 64B MRR Trending 2n-skx"
3148       output-file-name: "container-memif-l2-2t1c-xxv710-2n-skx"
3149       data: "plot-performance-trending-vpp-2n-skx"
3150       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'BASE' and '2T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
3151       parameters:
3152       - "result"
3153       layout: "plot-cpta"
3154
3155     - title: "VPP 4T2C L2 Container memif 64B MRR Trending 2n-skx"
3156       output-file-name: "container-memif-l2-4t2c-xxv710-2n-skx"
3157       data: "plot-performance-trending-vpp-2n-skx"
3158       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'BASE' and '4T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
3159       parameters:
3160       - "result"
3161       layout: "plot-cpta"
3162
3163     - title: "VPP 8T4C L2 Container memif 64B MRR Trending 2n-skx"
3164       output-file-name: "container-memif-l2-8t4c-xxv710-2n-skx"
3165       data: "plot-performance-trending-vpp-2n-skx"
3166       filter: "'NIC_Intel-XXV710' and 'MRR' and '64B' and 'BASE' and '8T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
3167       parameters:
3168       - "result"
3169       layout: "plot-cpta"
3170
3171 # VM vhost - x710, ethip4, 64B
3172
3173     - title: "VPP 2T1C VM vhost ethip4 64B MRR Trending 2n-skx"
3174       output-file-name: "vm-vhost-ethip4-2t1c-x710-2n-skx"
3175       data: "plot-performance-trending-vpp-2n-skx"
3176       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3177       parameters:
3178       - "result"
3179       layout: "plot-cpta"
3180
3181     - title: "VPP 4T2C VM vhost ethip4 64B MRR Trending 2n-skx"
3182       output-file-name: "vm-vhost-ethip4-4t2c-x710-2n-skx"
3183       data: "plot-performance-trending-vpp-2n-skx"
3184       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3185       parameters:
3186       - "result"
3187       layout: "plot-cpta"
3188
3189     - title: "VPP 8T4C VM vhost ethip4 64B MRR Trending 2n-skx"
3190       output-file-name: "vm-vhost-ethip4-8t4c-x710-2n-skx"
3191       data: "plot-performance-trending-vpp-2n-skx"
3192       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '8T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3193       parameters:
3194       - "result"
3195       layout: "plot-cpta"
3196
3197 # VM vhost - xxv710, ethip4, 64B
3198
3199     - title: "VPP 2T1C VM vhost ethip4 64B MRR Trending 2n-skx"
3200       output-file-name: "vm-vhost-ethip4-2t1c-xxv710-2n-skx"
3201       data: "plot-performance-trending-vpp-2n-skx"
3202       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '2T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3203       parameters:
3204       - "result"
3205       layout: "plot-cpta"
3206
3207     - title: "VPP 4T2C VM vhost ethip4 64B MRR Trending 2n-skx"
3208       output-file-name: "vm-vhost-ethip4-4t2c-xxv710-2n-skx"
3209       data: "plot-performance-trending-vpp-2n-skx"
3210       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '4T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3211       parameters:
3212       - "result"
3213       layout: "plot-cpta"
3214
3215     - title: "VPP 8T4C VM vhost ethip4 64B MRR Trending 2n-skx"
3216       output-file-name: "vm-vhost-ethip4-8t4c-xxv710-2n-skx"
3217       data: "plot-performance-trending-vpp-2n-skx"
3218       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '8T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3219       parameters:
3220       - "result"
3221       layout: "plot-cpta"
3222
3223 # VM vhost - x710, ethip4, IMIX
3224
3225     - title: "VPP 2T1C VM vhost ethip4 IMIX MRR Trending 2n-skx"
3226       output-file-name: "vm-vhost-imix-ethip4-2t1c-x710-2n-skx"
3227       data: "plot-performance-trending-vpp-2n-skx"
3228       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3229       parameters:
3230       - "result"
3231       layout: "plot-cpta"
3232
3233     - title: "VPP 4T2C VM vhost ethip4 IMIX MRR Trending 2n-skx"
3234       output-file-name: "vm-vhost-imix-ethip4-4t2c-x710-2n-skx"
3235       data: "plot-performance-trending-vpp-2n-skx"
3236       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3237       parameters:
3238       - "result"
3239       layout: "plot-cpta"
3240
3241     - title: "VPP 8T4C VM vhost ethip4 IMIX MRR Trending 2n-skx"
3242       output-file-name: "vm-vhost-imix-ethip4-8t4c-x710-2n-skx"
3243       data: "plot-performance-trending-vpp-2n-skx"
3244       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '8T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3245       parameters:
3246       - "result"
3247       layout: "plot-cpta"
3248
3249 # VM vhost - xxv710, ethip4, IMIX
3250
3251     - title: "VPP 2T1C VM vhost ethip4 IMIX MRR Trending 2n-skx"
3252       output-file-name: "vm-vhost-imix-ethip4-2t1c-xxv710-2n-skx"
3253       data: "plot-performance-trending-vpp-2n-skx"
3254       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '2T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3255       parameters:
3256       - "result"
3257       layout: "plot-cpta"
3258
3259     - title: "VPP 4T2C VM vhost ethip4 IMIX MRR Trending 2n-skx"
3260       output-file-name: "vm-vhost-imix-ethip4-4t2c-xxv710-2n-skx"
3261       data: "plot-performance-trending-vpp-2n-skx"
3262       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '4T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3263       parameters:
3264       - "result"
3265       layout: "plot-cpta"
3266
3267     - title: "VPP 8T4C VM vhost ethip4 IMIX MRR Trending 2n-skx"
3268       output-file-name: "vm-vhost-imix-ethip4-8t4c-xxv710-2n-skx"
3269       data: "plot-performance-trending-vpp-2n-skx"
3270       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '8T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'LBOND' and not 'VTS'"
3271       parameters:
3272       - "result"
3273       layout: "plot-cpta"
3274
3275 # VM vhost - x710, eth, 64B
3276
3277     - title: "VPP 2T1C VM vhost eth 64B MRR Trending 2n-skx"
3278       output-file-name: "vm-vhost-eth-2t1c-x710-2n-skx"
3279       data: "plot-performance-trending-vpp-2n-skx"
3280       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3281
3282       parameters:
3283       - "result"
3284       layout: "plot-cpta"
3285
3286     - title: "VPP 4T2C VM vhost eth 64B MRR Trending 2n-skx"
3287       output-file-name: "vm-vhost-eth-4t2c-x710-2n-skx"
3288       data: "plot-performance-trending-vpp-2n-skx"
3289       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3290       parameters:
3291       - "result"
3292       layout: "plot-cpta"
3293
3294     - title: "VPP 8T4C VM vhost eth 64B MRR Trending 2n-skx"
3295       output-file-name: "vm-vhost-eth-8t4c-x710-2n-skx"
3296       data: "plot-performance-trending-vpp-2n-skx"
3297       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '8T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3298       parameters:
3299       - "result"
3300       layout: "plot-cpta"
3301
3302 # VM vhost - xxv710, eth, 64B
3303
3304     - title: "VPP 2T1C VM vhost eth 64B MRR Trending 2n-skx"
3305       output-file-name: "vm-vhost-eth-2t1c-xxv710-2n-skx"
3306       data: "plot-performance-trending-vpp-2n-skx"
3307       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '2T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3308
3309       parameters:
3310       - "result"
3311       layout: "plot-cpta"
3312
3313     - title: "VPP 4T2C VM vhost eth 64B MRR Trending 2n-skx"
3314       output-file-name: "vm-vhost-eth-4t2c-xxv710-2n-skx"
3315       data: "plot-performance-trending-vpp-2n-skx"
3316       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '4T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3317       parameters:
3318       - "result"
3319       layout: "plot-cpta"
3320
3321     - title: "VPP 8T4C VM vhost eth 64B MRR Trending 2n-skx"
3322       output-file-name: "vm-vhost-eth-8t4c-xxv710-2n-skx"
3323       data: "plot-performance-trending-vpp-2n-skx"
3324       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '8T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3325       parameters:
3326       - "result"
3327       layout: "plot-cpta"
3328
3329 # VM vhost - x710, eth, IMIX
3330
3331     - title: "VPP 2T1C VM vhost eth IMIX MRR Trending 2n-skx"
3332       output-file-name: "vm-vhost-imix-eth-2t1c-x710-2n-skx"
3333       data: "plot-performance-trending-vpp-2n-skx"
3334       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3335
3336       parameters:
3337       - "result"
3338       layout: "plot-cpta"
3339
3340     - title: "VPP 4T2C VM vhost eth IMIX MRR Trending 2n-skx"
3341       output-file-name: "vm-vhost-imix-eth-4t2c-x710-2n-skx"
3342       data: "plot-performance-trending-vpp-2n-skx"
3343       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3344       parameters:
3345       - "result"
3346       layout: "plot-cpta"
3347
3348     - title: "VPP 8T4C VM vhost eth IMIX MRR Trending 2n-skx"
3349       output-file-name: "vm-vhost-imix-eth-8t4c-x710-2n-skx"
3350       data: "plot-performance-trending-vpp-2n-skx"
3351       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '8T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3352       parameters:
3353       - "result"
3354       layout: "plot-cpta"
3355
3356 # VM vhost - xxv710, eth, IMIX
3357
3358     - title: "VPP 2T1C VM vhost eth IMIX MRR Trending 2n-skx"
3359       output-file-name: "vm-vhost-imix-eth-2t1c-xxv710-2n-skx"
3360       data: "plot-performance-trending-vpp-2n-skx"
3361       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '2T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3362
3363       parameters:
3364       - "result"
3365       layout: "plot-cpta"
3366
3367     - title: "VPP 4T2C VM vhost eth IMIX MRR Trending 2n-skx"
3368       output-file-name: "vm-vhost-imix-eth-4t2c-xxv710-2n-skx"
3369       data: "plot-performance-trending-vpp-2n-skx"
3370       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '4T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3371       parameters:
3372       - "result"
3373       layout: "plot-cpta"
3374
3375     - title: "VPP 8T4C VM vhost eth IMIX MRR Trending 2n-skx"
3376       output-file-name: "vm-vhost-imix-eth-8t4c-xxv710-2n-skx"
3377       data: "plot-performance-trending-vpp-2n-skx"
3378       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '8T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'LBOND' and not 'VTS'"
3379       parameters:
3380       - "result"
3381       layout: "plot-cpta"
3382
3383 # Link Bonding - x710
3384
3385     - title: "VPP 2T1C Link Bonding 64B MRR Trending 2n-skx"
3386       output-file-name: "lb-64b-2t1c-x710-2n-skx"
3387       data: "plot-performance-trending-vpp-2n-skx"
3388       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T1C' and 'LBOND'"
3389       parameters:
3390       - "result"
3391       layout: "plot-cpta"
3392
3393     - title: "VPP 4T2C Link Bonding 64B MRR Trending 2n-skx"
3394       output-file-name: "lb-64b-4t2c-x710-2n-skx"
3395       data: "plot-performance-trending-vpp-2n-skx"
3396       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T2C' and 'LBOND'"
3397       parameters:
3398       - "result"
3399       layout: "plot-cpta"
3400
3401     - title: "VPP 8T4C Link Bonding 64B MRR Trending 2n-skx"
3402       output-file-name: "lb-64b-8t4c-x710-2n-skx"
3403       data: "plot-performance-trending-vpp-2n-skx"
3404       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '8T4C' and 'LBOND'"
3405       parameters:
3406       - "result"
3407       layout: "plot-cpta"
3408
3409     - title: "VPP 2T1C Link Bonding IMIX MRR Trending 2n-skx"
3410       output-file-name: "lb-imix-2t1c-x710-2n-skx"
3411       data: "plot-performance-trending-vpp-2n-skx"
3412       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T1C' and 'LBOND'"
3413       parameters:
3414       - "result"
3415       layout: "plot-cpta"
3416
3417     - title: "VPP 4T2C Link Bonding IMIX MRR Trending 2n-skx"
3418       output-file-name: "lb-imix-4t2c-x710-2n-skx"
3419       data: "plot-performance-trending-vpp-2n-skx"
3420       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T2C' and 'LBOND'"
3421       parameters:
3422       - "result"
3423       layout: "plot-cpta"
3424
3425     - title: "VPP 8T4C Link Bonding IMIX MRR Trending 2n-skx"
3426       output-file-name: "lb-imix-8t4c-x710-2n-skx"
3427       data: "plot-performance-trending-vpp-2n-skx"
3428       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '8T4C' and 'LBOND'"
3429       parameters:
3430       - "result"
3431       layout: "plot-cpta"
3432
3433 # Link Bonding - xxv710
3434
3435     - title: "VPP 2T1C Link Bonding 64B MRR Trending 2n-skx"
3436       output-file-name: "lb-64b-2t1c-xxv710-2n-skx"
3437       data: "plot-performance-trending-vpp-2n-skx"
3438       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '2T1C' and 'LBOND'"
3439       parameters:
3440       - "result"
3441       layout: "plot-cpta"
3442
3443     - title: "VPP 4T2C Link Bonding 64B MRR Trending 2n-skx"
3444       output-file-name: "lb-64b-4t2c-xxv710-2n-skx"
3445       data: "plot-performance-trending-vpp-2n-skx"
3446       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '4T2C' and 'LBOND'"
3447       parameters:
3448       - "result"
3449       layout: "plot-cpta"
3450
3451     - title: "VPP 8T4C Link Bonding 64B MRR Trending 2n-skx"
3452       output-file-name: "lb-64b-8t4c-xxv710-2n-skx"
3453       data: "plot-performance-trending-vpp-2n-skx"
3454       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '8T4C' and 'LBOND'"
3455       parameters:
3456       - "result"
3457       layout: "plot-cpta"
3458
3459     - title: "VPP 2T1C Link Bonding IMIX MRR Trending 2n-skx"
3460       output-file-name: "lb-imix-2t1c-xxv710-2n-skx"
3461       data: "plot-performance-trending-vpp-2n-skx"
3462       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '2T1C' and 'LBOND'"
3463       parameters:
3464       - "result"
3465       layout: "plot-cpta"
3466
3467     - title: "VPP 4T2C Link Bonding IMIX MRR Trending 2n-skx"
3468       output-file-name: "lb-imix-4t2c-xxv710-2n-skx"
3469       data: "plot-performance-trending-vpp-2n-skx"
3470       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '4T2C' and 'LBOND'"
3471       parameters:
3472       - "result"
3473       layout: "plot-cpta"
3474
3475     - title: "VPP 8T4C Link Bonding IMIX MRR Trending 2n-skx"
3476       output-file-name: "lb-imix-8t4c-xxv710-2n-skx"
3477       data: "plot-performance-trending-vpp-2n-skx"
3478       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '8T4C' and 'LBOND'"
3479       parameters:
3480       - "result"
3481       layout: "plot-cpta"
3482
3483 # DPDK - x710 - 64B
3484
3485     - title: "DPDK 2T1C 64B MRR Trending 2n-skx"
3486       output-file-name: "dpdk-64b-2t1c-x710-2n-skx"
3487       data: "plot-performance-trending-dpdk-2n-skx"
3488       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T1C' and 'DPDK'"
3489       parameters:
3490       - "result"
3491       layout: "plot-cpta"
3492
3493     - title: "DPDK 4T2C 64B MRR Trending 2n-skx"
3494       output-file-name: "dpdk-64b-4t2c-x710-2n-skx"
3495       data: "plot-performance-trending-dpdk-2n-skx"
3496       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T2C' and 'DPDK'"
3497       parameters:
3498       - "result"
3499       layout: "plot-cpta"
3500
3501     - title: "DPDK 8T4C 64B MRR Trending 2n-skx"
3502       output-file-name: "dpdk-64b-8t4c-x710-2n-skx"
3503       data: "plot-performance-trending-dpdk-2n-skx"
3504       filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '8T4C' and 'DPDK'"
3505       parameters:
3506       - "result"
3507       layout: "plot-cpta"
3508
3509 # DPDK - x710 - IMIX
3510
3511     - title: "DPDK 2T1C IMIX MRR Trending 2n-skx"
3512       output-file-name: "dpdk-imix-2t1c-x710-2n-skx"
3513       data: "plot-performance-trending-dpdk-2n-skx"
3514       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T1C' and 'DPDK'"
3515       parameters:
3516       - "result"
3517       layout: "plot-cpta"
3518
3519     - title: "DPDK 4T2C IMIX MRR Trending 2n-skx"
3520       output-file-name: "dpdk-imix-4t2c-x710-2n-skx"
3521       data: "plot-performance-trending-dpdk-2n-skx"
3522       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T2C' and 'DPDK'"
3523       parameters:
3524       - "result"
3525       layout: "plot-cpta"
3526
3527     - title: "DPDK 8T4C IMIX MRR Trending 2n-skx"
3528       output-file-name: "dpdk-imix-8t4c-x710-2n-skx"
3529       data: "plot-performance-trending-dpdk-2n-skx"
3530       filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '8T4C' and 'DPDK'"
3531       parameters:
3532       - "result"
3533       layout: "plot-cpta"
3534
3535 # DPDK - xxv710 - 64B
3536
3537     - title: "DPDK 2T1C 64B MRR Trending 2n-skx"
3538       output-file-name: "dpdk-64b-2t1c-xxv710-2n-skx"
3539       data: "plot-performance-trending-dpdk-2n-skx"
3540       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '2T1C' and 'DPDK'"
3541       parameters:
3542       - "result"
3543       layout: "plot-cpta"
3544
3545     - title: "DPDK 4T2C 64B MRR Trending 2n-skx"
3546       output-file-name: "dpdk-64b-4t2c-xxv710-2n-skx"
3547       data: "plot-performance-trending-dpdk-2n-skx"
3548       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '4T2C' and 'DPDK'"
3549       parameters:
3550       - "result"
3551       layout: "plot-cpta"
3552
3553     - title: "DPDK 8T4C 64B MRR Trending 2n-skx"
3554       output-file-name: "dpdk-64b-8t4c-xxv710-2n-skx"
3555       data: "plot-performance-trending-dpdk-2n-skx"
3556       filter: "'NIC_Intel-XXV710' and '64B' and 'MRR' and '8T4C' and 'DPDK'"
3557       parameters:
3558       - "result"
3559       layout: "plot-cpta"
3560
3561 # DPDK - xxv710 - IMIX
3562
3563     - title: "DPDK 2T1C IMIX MRR Trending 2n-skx"
3564       output-file-name: "dpdk-imix-2t1c-xxv710-2n-skx"
3565       data: "plot-performance-trending-dpdk-2n-skx"
3566       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '2T1C' and 'DPDK'"
3567       parameters:
3568       - "result"
3569       layout: "plot-cpta"
3570
3571     - title: "DPDK 4T2C IMIX MRR Trending 2n-skx"
3572       output-file-name: "dpdk-imix-4t2c-xxv710-2n-skx"
3573       data: "plot-performance-trending-dpdk-2n-skx"
3574       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '4T2C' and 'DPDK'"
3575       parameters:
3576       - "result"
3577       layout: "plot-cpta"
3578
3579     - title: "DPDK 8T4C IMIX MRR Trending 2n-skx"
3580       output-file-name: "dpdk-imix-8t4c-xxv710-2n-skx"
3581       data: "plot-performance-trending-dpdk-2n-skx"
3582       filter: "'NIC_Intel-XXV710' and 'IMIX' and 'MRR' and '8T4C' and 'DPDK'"
3583       parameters:
3584       - "result"
3585       layout: "plot-cpta"