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