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