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