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