summaryrefslogtreecommitdiffstats
path: root/test/hook.py
blob: 29c4cd9435c827eb99ac619863546b3804c1efd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import signal
import os
import sys
import traceback
from log import RED, single_line_delim, double_line_delim
from subprocess import check_output, CalledProcessError
from util import check_core_path, get_core_path


class Hook(object):
    """
    Generic hooks before/after API/CLI calls
    """

    def __init__(self, logger):
        self.logger = logger

    def before_api(self, api_name, api_args):
        """
        Function called before API call
        Emit a debug message describing the API name and arguments

        @param api_name: name of the API
        @param api_args: tuple containing the API arguments
        """
        self.logger.debug("API: %s (%s)" %
                          (api_name, api_args), extra={'color': RED})

    def after_api(self, api_name, api_args):
        """
        Function called after API call

        @param api_name: name of the API
        @param api_args: tuple containing the API arguments
        """
        pass

    def before_cli(self, cli):
        """
        Function called before CLI call
        Emit a debug message describing the CLI

        @param cli: CLI string
        """
        self.logger.debug("CLI: %s" % (cli), extra={'color': RED})

    def after_cli(self, cli):
        """
        Function called after CLI call
        """
        pass


class VppDiedError(Exception):
    pass


class PollHook(Hook):
    """ Hook which checks if the vpp subprocess is alive """

    def __init__(self, testcase):
        super(PollHook, self).__init__(testcase.logger)
        self.testcase = testcase

    def on_crash(self, core_path):
        self.logger.error("Core file present, debug with: gdb %s %s" %
                          (self.testcase.vpp_bin, core_path))
        check_core_path(self.logger, core_path)
        self.logger.error("Running `file %s':" % core_path)
        try:
            info = check_output(["file", core_path])
            self.logger.error(info)
        except CalledProcessError as e:
            self.logger.error(
                "Could not run `file' utility on core-file, "
                "rc=%s" % e.returncode)

    def poll_vpp(self):
        """
        Poll the vpp status and throw an exception if it's not running
        :raises VppDiedError: exception if VPP is not running anymore
        """
        if self.testcase.vpp_dead:
            # already dead, nothing to do
            return

        self.testcase.vpp.poll()
        if self.testcase.vpp.returncode is not None:
            signaldict = dict(
                (k, v) for v, k in reversed(sorted(signal.__dict__.items()))
                if v.startswith('SIG') and not v.startswith('SIG_'))

            if self.testcase.vpp.returncode in signaldict:
                s = signaldict[abs(self.testcase.vpp.returncode)]
            else:
                s = "unknown"
            msg = "VPP subprocess died unexpectedly with returncode %d [%s]" %\
                (self.testcase.vpp.returncode, s)
            self.logger.critical(msg)
            core_path = get_core_path(self.testcase.tempdir)
            if os.path.isfile(core_path):
                self.on_crash(core_path)
            self.testcase.vpp_dead = True
            raise VppDiedError(msg)

    def before_api(self, api_name, api_args):
        """
        Check if VPP died before executing an API

        :param api_name: name of the API
        :param api_args: tuple containing the API arguments
        :raises VppDiedError: exception if VPP is not running anymore

        """
        super(PollHook, self).before_api(api_name, api_args)
        self.poll_vpp()

    def before_cli(self, cli):
        """
        Check if VPP died before executing a CLI

        :param cli: CLI string
        :raises Exception: exception if VPP is not running anymore

        """
        super(PollHook, self).before_cli(cli)
        self.poll_vpp()


class StepHook(PollHook):
    """ Hook which requires user to press ENTER before doing any API/CLI """

    def __init__(self, testcase):
        self.skip_stack = None
        self.skip_num = None
        self.skip_count = 0
        super(StepHook, self).__init__(testcase)

    def skip(self):
        if self.skip_stack is None:
            return False
        stack = traceback.extract_stack()
        counter = 0
        skip = True
        for e in stack:
            if counter > self.skip_num:
                break
            if e[0] != self.skip_stack[counter][0]:
                skip = False
            if e[1] != self.skip_stack[counter][1]:
                skip = False
            counter += 1
        if skip:
            self.skip_count += 1
            return True
        else:
            print("%d API/CLI calls skipped in specified stack "
                  "frame" % self.skip_count)
            self.skip_count = 0
            self.skip_stack = None
            self.skip_num = None
            return False

    def user_input(self):
        print('number\tfunction\tfile\tcode')
        counter = 0
        stack = traceback.extract_stack()
        for e in stack:
            print('%02d.\t%s\t%s:%d\t[%s]' % (counter, e[2], e[0], e[1], e[3]))
            counter += 1
        print(single_line_delim)
        print("You may enter a number of stack frame chosen from above")
        print("Calls in/below that stack frame will be not be stepped anymore")
        print(single_line_delim)
        while True:
            print("Enter your choice, if any, and press ENTER to continue "
                  "running the testcase...")
            choice = sys.stdin.readline().rstrip('\r\n')
            if choice == "":
                choice = None
            try:
                if choice is not None:
                    num = int(choice)
            except ValueError:
                print("Invalid input")
                continue
            if choice is not None and (num < 0 or num >= len(stack)):
                print("Invalid choice")
                continue
            break
        if choice is not None:
            self.skip_stack = stack
            self.skip_num = num

    def before_cli(self, cli):
        """ Wait for ENTER before executing CLI """
        if self.skip():
            print("Skip pause before executing CLI: %s" % cli)
        else:
            print(double_line_delim)
            print("Test paused before executing CLI: %s" % cli)
            print(single_line_delim)
            self.user_input()
        super(StepHook, self).before_cli(cli)

    def before_api(self, api_name, api_args):
        """ Wait for ENTER before executing API """
        if self.skip():
            print("Skip pause before executing API: %s (%s)"
                  % (api_name, api_args))
        else:
            print(double_line_delim)
            print("Test paused before executing API: %s (%s)"
                  % (api_name, api_args))
            print(single_line_delim)
            self.user_input()
        super(StepHook, self).before_api(api_name, api_args)
href='#n1150'>1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492
# Copyright (c) 2018 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# This is the specification of parameters for "Continuous Performance Trending
# and Analysis" feature provided by PAL.

-
  type: "environment"
  configuration:
    # Debug mode:
    # - Skip:
    #   - Download of input data files
    # - Do:
    #   - Read data from given zip / xml files
    #   - Set the configuration as it is done in normal mode
    # If the section "type: debug" is missing, CFG[DEBUG] is set to 0.
    CFG[DEBUG]: 0

  paths:
    # Top level directories:
    ## Working directory
    DIR[WORKING]: "_tmp"
    ## Build directories
    DIR[BUILD,HTML]: "_build"
    ## Static .rst files
    DIR[RST]: "../../../docs/cpta"

    # Static html content
    DIR[STATIC]: "{DIR[BUILD,HTML]}/_static"
    DIR[STATIC,VPP]: "{DIR[STATIC]}/vpp"
    # DIR[STATIC,DPDK]: "{DIR[STATIC]}/dpdk"
    DIR[STATIC,ARCH]: "{DIR[STATIC]}/archive"

    # Working directories
    ## Input data files (.zip, .xml)
    DIR[WORKING,DATA]: "{DIR[WORKING]}/data"
    ## Static source files from git
    DIR[WORKING,SRC]: "{DIR[WORKING]}/src"
    DIR[WORKING,SRC,STATIC]: "{DIR[WORKING,SRC]}/_static"

    # .css patch file
    DIR[CSS_PATCH_FILE]: "{DIR[STATIC]}/theme_overrides.css"
    DIR[CSS_PATCH_FILE2]: "{DIR[WORKING,SRC,STATIC]}/theme_overrides.css"

  urls:
    URL[JENKINS,CSIT]: "https://jenkins.fd.io/view/csit/job"
    URL[NEXUS,LOG]: "https://logs.fd.io/production/vex-yul-rot-jenkins-1"
    URL[NEXUS]: "https://docs.fd.io/csit"
    DIR[NEXUS]: "trending/_static/archive"

  make-dirs:
  # List the directories which are created while preparing the environment.
  # All directories MUST be defined in "paths" section.
  - "DIR[WORKING,DATA]"
  - "DIR[WORKING,SRC,STATIC]"
  - "DIR[BUILD,HTML]"
  - "DIR[STATIC,VPP]"
  - "DIR[STATIC,ARCH]"
  build-dirs:
  # List the directories where the results (build) is stored.
  # All directories MUST be defined in "paths" section.
  - "DIR[BUILD,HTML]"

-
  type: "configuration"

  data-sets:
    plot-performance-trending:
      csit-vpp-perf-mrr-daily-master:
        start: 15
        end: "lastCompletedBuild" # "lastSuccessfulBuild"  # take all from the 'start'

  plot-layouts:
    plot-cpta:
      title: ""
      autosize: False
      showlegend: True
      width: 1100
      height: 800
      yaxis:
        showticklabels: True
        tickformat: ".3s"
        title: "Throughput [Mpps]"
        hoverformat: ".4s"
        range: []
        gridcolor: "rgb(238, 238, 238)"
        linecolor: "rgb(238, 238, 238)"
        showline: True
        zeroline: False
        tickcolor: "rgb(238, 238, 238)"
        linewidth: 1
        showgrid: True
      xaxis:
        showticklabels: True
        title: "/csit/job/{job}/$id"
        autorange: True
        showgrid: True
        gridcolor: "rgb(238, 238, 238)"
        linecolor: "rgb(238, 238, 238)"
        fixedrange: False
        zeroline: False
        tickcolor: "rgb(238, 238, 238)"
        showline: True
        linewidth: 1
        autotick: True
      margin:
        r: 20
        b: 50
        t: 50
        l: 70
      legend:
        orientation: "h"
        traceorder: "normal"
#        tracegroupgap: 10
#        bordercolor: "rgb(238, 238, 238)"
#        borderwidth: 1
      hoverlabel:
        namelength: -1

-
  type: "debug"
  general:
    input-format: "xml"  # zip or xml
    extract: "robot-plugin/output.xml"  # Only for zip
  builds:
    # The files must be in the directory DIR[WORKING,DATA]
    csit-vpp-perf-mrr-daily-master:
    -
      build: 1
      file: "{DIR[WORKING,DATA]}/output_mrr_1.xml"
    -
      build: 2
      file: "{DIR[WORKING,DATA]}/output_mrr_2.xml"
    -
      build: 3
      file: "{DIR[WORKING,DATA]}/output_mrr_3.xml"
    -
      build: 4
      file: "{DIR[WORKING,DATA]}/output_mrr_4.xml"
    -
      build: 5
      file: "{DIR[WORKING,DATA]}/output_mrr_5.xml"
    -
      build: 6
      file: "{DIR[WORKING,DATA]}/output_mrr_5.xml"
    -
      build: 7
      file: "{DIR[WORKING,DATA]}/output_mrr_5.xml"
    -
      build: 8
      file: "{DIR[WORKING,DATA]}/output_mrr_5.xml"
    -
      build: 9
      file: "{DIR[WORKING,DATA]}/output_mrr_5.xml"
    -
      build: 10
      file: "{DIR[WORKING,DATA]}/output_mrr_5.xml"
    -
      build: 11
      file: "{DIR[WORKING,DATA]}/output_mrr_5.xml"
    -
      build: 12
      file: "{DIR[WORKING,DATA]}/output_mrr_5.xml"

-
  type: "static"
  src-path: "{DIR[RST]}"
  dst-path: "{DIR[WORKING,SRC]}"

-
  type: "input"  # Ignored in debug mode
  general:
    file-name: "output.xml.gz"
    file-format: ".gz"
    download-path: "{job}/{build}/archives/{filename}"
    extract: "output.xml"
#    file-name: "robot-plugin.zip"
#    file-format: ".zip"
#    download-path: "{job}/{build}/robot/report/*zip*/{filename}"
#    extract: "robot-plugin/output.xml"
  builds:
    csit-vpp-perf-mrr-daily-master:
      start: 15
      end: "lastCompletedBuild"  # take all from the 'start'

-
  type: "output"
  output:
#   "report"
    "CPTA"  # Continuous Performance Trending and Analysis
  format:
    html:
    - full
    pdf:
    - minimal

################################################################################
###                               T A B L E S                                ###
################################################################################

-
  type: "table"
  title: "Performance trending dashboard"
  algorithm: "table_performance_trending_dashboard"
  output-file-ext: ".csv"
  output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-1t1c"
  data: "plot-performance-trending"
  filter: "'1T1C'"
  parameters:
  - "name"
  - "parent"
  - "throughput"
  # Number of the best and the worst tests presented in the table. Use 0 (zero)
  # to present all tests.
  nr-of-tests-shown: 20
  outlier-const: 1.5
  window: 10

-
  type: "table"
  title: "Performance trending dashboard"
  algorithm: "table_performance_trending_dashboard"
  output-file-ext: ".csv"
  output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-2t2c"
  data: "plot-performance-trending"
  filter: "'2T2C'"
  parameters:
  - "name"
  - "parent"
  - "throughput"
  # Number of the best and the worst tests presented in the table. Use 0 (zero)
  # to present all tests.
  nr-of-tests-shown: 20
  outlier-const: 1.5
  window: 10

-
  type: "table"
  title: "Performance trending dashboard"
  algorithm: "table_performance_trending_dashboard"
  output-file-ext: ".csv"
  output-file: "{DIR[STATIC,VPP]}/performance-trending-dashboard-4t4c"
  data: "plot-performance-trending"
  filter: "'4T4C'"
  parameters:
  - "name"
  - "parent"
  - "throughput"
  # Number of the best and the worst tests presented in the table. Use 0 (zero)
  # to present all tests.
  nr-of-tests-shown: 20
  outlier-const: 1.5
  window: 10


################################################################################
###                                 C P T A                                  ###
################################################################################

# Plots VPP Continuous Performance Trending and Analysis
-
  type: "cpta"
  title: "Continuous Performance Trending and Analysis"
  algorithm: "cpta"
  output-file-type: ".html"
  output-file: "{DIR[STATIC,VPP]}/cpta"
  data: "plot-performance-trending"
  plots:

# L2 - x520

    - title: "VPP 1T1C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 1T1C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-feature-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-feature-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-feature-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# L2 - xl710

    - title: "VPP 1T1C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-1t1c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-2t2c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-4t4c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# L2 - x710

    - title: "VPP 1T1C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 1T1C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-feature-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-feature-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 64B Packet Throughput - {period} Trending"
      output-file-name: "l2-feature-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST' and not 'MEMIF'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# IPv4 - x520

    - title: "VPP 1T1C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '1T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 1T1C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-feature-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-feature-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-feature-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# IPv4 - xl710

    - title: "VPP 1T1C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-1t1c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE' or 'FEATURE') and '1T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-2t2c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-4t4c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# IPv4 - x710

    - title: "VPP 1T1C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '1T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '2T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and ('BASE' or 'SCALE') and '4T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 1T1C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-feature-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '1T1C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-feature-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '2T2C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPv4 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-feature-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'FEATURE' and '4T4C' and 'IP4FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# IPv4 Tunnels - x520

    - title: "VPP 1T1C IPv4 Tunnels 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-tunnels-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and '64B' and 'ENCAP' and 'MRR' and '1T1C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPv4 Tunnels 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-tunnels-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and '64B' and 'ENCAP' and 'MRR' and '2T2C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPv4 Tunnels 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-tunnels-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and '64B' and 'ENCAP' and 'MRR' and '4T4C' and ('VXLAN' or 'VXLANGPE' or 'LISP' or 'LISPGPE' or 'GRE') and not 'VHOST' and not 'IPSECHW'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# IPv4 Tunnels - x710

    - title: "VPP 1T1C IPv4 Tunnels 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-tunnels-1t1c-x710"
      data: "plot-performance-trending"
      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'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPv4 Tunnels 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-tunnels-2t2c-x710"
      data: "plot-performance-trending"
      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'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPv4 Tunnels 64B Packet Throughput - {period} Trending"
      output-file-name: "ip4-tunnels-4t4c-x710"
      data: "plot-performance-trending"
      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'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# IPv6 - x520

    - title: "VPP 1T1C IPv6 78B Packet Throughput - {period} Trending"
      output-file-name: "ip6-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '1T1C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPv6 78B Packet Throughput - {period} Trending"
      output-file-name: "ip6-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T2C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPv6 78B Packet Throughput - {period} Trending"
      output-file-name: "ip6-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T4C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# IPv6 - xl710

    - title: "VPP 1T1C IPv6 78B Packet Throughput - {period} Trending"
      output-file-name: "ip6-1t1c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '1T1C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPv6 78B Packet Throughput - {period} Trending"
      output-file-name: "ip6-2t2c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T2C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPv6 78B Packet Throughput - {period} Trending"
      output-file-name: "ip6-4t4c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T4C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# IPv6 - x710

    - title: "VPP 1T1C IPv6 78B Packet Throughput - {period} Trending"
      output-file-name: "ip6-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '1T1C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPv6 78B Packet Throughput - {period} Trending"
      output-file-name: "ip6-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '2T2C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPv6 78B Packet Throughput - {period} Trending"
      output-file-name: "ip6-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '78B' and ('BASE' or 'SCALE' or 'FEATURE') and '4T4C' and 'IP6FWD' and not 'IPSEC' and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# Container memif - x520, 64B

    - title: "VPP 1T1C L2 Container memif 64B Packet Throughput - {period} Trending"
      output-file-name: "container-memif-l2-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 Container memif 64B Packet Throughput - {period} Trending"
      output-file-name: "container-memif-l2-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 Container memif 64B Packet Throughput - {period} Trending"
      output-file-name: "container-memif-l2-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and '64B' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# Container memif - x520, IMIX

    - title: "VPP 1T1C L2 Container memif IMIX Packet Throughput - {period} Trending"
      output-file-name: "container-memif-imix-l2-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and 'IMIX' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 Container memif IMIX Packet Throughput - {period} Trending"
      output-file-name: "container-memif-imix-l2-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and 'IMIX' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 Container memif IMIX Packet Throughput - {period} Trending"
      output-file-name: "container-memif-imix-l2-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'MRR' and 'IMIX' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# Container memif - xl710, 64B

    - title: "VPP 1T1C L2 Container memif 64B Packet Throughput - {period} Trending"
      output-file-name: "container-memif-l2-1t1c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 Container memif 64B Packet Throughput - {period} Trending"
      output-file-name: "container-memif-l2-2t2c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 Container memif 64B Packet Throughput - {period} Trending"
      output-file-name: "container-memif-l2-4t4c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and '64B' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# Container memif - xl710, IMIX

    - title: "VPP 1T1C L2 Container memif IMIX Packet Throughput - {period} Trending"
      output-file-name: "container-memif-imix-l2-1t1c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and 'IMIX' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 Container memif IMIX Packet Throughput - {period} Trending"
      output-file-name: "container-memif-imix-l2-2t2c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and 'IMIX' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 Container memif IMIX Packet Throughput - {period} Trending"
      output-file-name: "container-memif-imix-l2-4t4c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'MRR' and 'IMIX' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# Container memif - x710, 64B

    - title: "VPP 1T1C L2 Container memif 64B Packet Throughput - {period} Trending"
      output-file-name: "container-memif-l2-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 Container memif 64B Packet Throughput - {period} Trending"
      output-file-name: "container-memif-l2-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 Container memif 64B Packet Throughput - {period} Trending"
      output-file-name: "container-memif-l2-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and '64B' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# Container memif - x520, IMIX

    - title: "VPP 1T1C L2 Container memif IMIX Packet Throughput - {period} Trending"
      output-file-name: "container-memif-imix-l2-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and 'IMIX' and 'BASE' and '1T1C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C L2 Container memif IMIX Packet Throughput - {period} Trending"
      output-file-name: "container-memif-imix-l2-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and 'IMIX' and 'BASE' and '2T2C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C L2 Container memif IMIX Packet Throughput - {period} Trending"
      output-file-name: "container-memif-imix-l2-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'MRR' and 'IMIX' and 'BASE' and '4T4C' and 'MEMIF' and ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# VM vhost - x520, ethip4, 64B

    - title: "VPP 1T1C VM vhost ethip4 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-ethip4-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '1T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C VM vhost ethip4 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-ethip4-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '2T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C VM vhost ethip4 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-ethip4-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '4T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# VM vhost - x520, ethip4, IMIX

    - title: "VPP 1T1C VM vhost ethip4 IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-ethip4-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C VM vhost ethip4 IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-ethip4-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C VM vhost ethip4 IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-ethip4-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# VM vhost - x520, eth, 64B

    - title: "VPP 1T1C VM vhost eth 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-eth-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '1T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"

      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C VM vhost eth 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-eth-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '2T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C VM vhost eth 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-eth-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and '64B' and 'MRR' and '4T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# VM vhost - x520, eth, IMIX

    - title: "VPP 1T1C VM vhost eth IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-eth-1t1c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"

      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C VM vhost eth IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-eth-2t2c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C VM vhost eth IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-eth-4t4c-x520"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X520-DA2' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# VM vhost - xl710, eth, 64B

    - title: "VPP 1T1C VM vhost eth 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-eth-1t1c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and '64B' and 'MRR' and '1T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"

      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C VM vhost eth 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-eth-2t2c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and '64B' and 'MRR' and '2T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C VM vhost eth 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-eth-4t4c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and '64B' and 'MRR' and '4T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# VM vhost - xl710, eth, IMIX

    - title: "VPP 1T1C VM vhost eth IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-eth-1t1c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"

      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C VM vhost eth IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-eth-2t2c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C VM vhost eth IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-eth-4t4c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# VM vhost - x710, ethip4, 64B

    - title: "VPP 1T1C VM vhost ethip4 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-ethip4-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '1T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C VM vhost ethip4 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-ethip4-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C VM vhost ethip4 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-ethip4-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# VM vhost - x710, ethip4, IMIX

    - title: "VPP 1T1C VM vhost ethip4 IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-ethip4-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C VM vhost ethip4 IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-ethip4-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C VM vhost ethip4 IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-ethip4-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and not ('L2BDMACSTAT' or 'L2BDMACLRN' or 'L2XCFWD')"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# VM vhost - x710, eth, 64B

    - title: "VPP 1T1C VM vhost eth 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-eth-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '1T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"

      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C VM vhost eth 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-eth-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '2T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C VM vhost eth 64B Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-eth-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and '64B' and 'MRR' and '4T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# VM vhost - x710, eth, IMIX

    - title: "VPP 1T1C VM vhost eth IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-eth-1t1c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '1T1C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"

      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C VM vhost eth IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-eth-2t2c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '2T2C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C VM vhost eth IMIX Packet Throughput - {period} Trending"
      output-file-name: "vm-vhost-imix-eth-4t4c-x710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-X710' and 'IMIX' and 'MRR' and '4T4C' and 'VHOST' and not 'VXLAN' and not 'IP4FWD' and not 'DOT1Q' and not '2VM'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

# IPSec

    - title: "VPP 1T1C IPSec 64B Packet Throughput - {period} Trending"
      output-file-name: "ipsec-1t1c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and '64B' and 'IP4FWD' and 'MRR' and '1T1C' and 'IPSECHW' and ('IPSECTRAN' or 'IPSECTUN') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 2T2C IPSec 64B Packet Throughput - {period} Trending"
      output-file-name: "ipsec-2t2c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and '64B' and 'IP4FWD' and 'MRR' and '2T2C' and 'IPSECHW' and ('IPSECTRAN' or 'IPSECTUN') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"

    - title: "VPP 4T4C IPSec 64B Packet Throughput - {period} Trending"
      output-file-name: "ipsec-4t4c-xl710"
      data: "plot-performance-trending"
      filter: "'NIC_Intel-XL710' and '64B' and 'IP4FWD' and 'MRR' and '4T4C' and 'IPSECHW' and ('IPSECTRAN' or 'IPSECTUN') and not 'VHOST'"
      parameters:
      - "result"
      periods:
      - 1
      - 14
      # - 60
      layout: "plot-cpta"