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