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