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