aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates/workflow/confirm.html
blob: 251020452ebea5236af9b75cf2d6862b5dc77b7e (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
{% extends "workflow/viewport-element.html" %}
{% load staticfiles %}

{% load bootstrap3 %}

{% block content %}

<style>
    #form_div {
        width: 100%;
        padding: 5%;
        text-align: center;
    }
    #text_display {
        text-align: left;
        display: inline-block;
    }
    #text_wrapper {
        text-align: center; /*centers child div*/
    }
    p {
        margin:0;
        padding:0;
    }
</style>

<div style="text-align:center;">
    <h3>Confirm  Session</h3>
</div>
<div id="vlan_warning"></div>
<form id="vlan_form" action="/wf/workflow/" method="post">
    {% csrf_token %}
    <input id="vlan_input" name="vlan_input" type="hidden"/>
</form>
<div id="text_wrapper">
    <div id="text_display">
        <pre>{{confirmation_info|escape}}</pre>
    </div>
</div>
<div id="form_div">
<form id="confirmation_form" action="/wf/workflow/" method="post">
    {% csrf_token %}
    <div style="display: none;">
    {{form|default:"<p> No Form Loaded</p>"}}
    </div>
</form>
<div class="cform_buttons">
    <button id="confirm_button" class="btn btn-success" onclick="formconfirm()">Confirm</button>
    <button id="cancel_button" class="btn btn-danger" onclick="formcancel()">Cancel</button>
</div>

<div style="display: none;">
<form id="manager_delete_form" action="/wf/workflow/finish/" method="post">
    {% csrf_token %}
</form>
</div>

<script>
    var select = document.getElementById("id_confirm");

    function delete_manager()
    {
        var form = $("#manager_delete_form");
        var formData = form.serialize();
        var req = new XMLHttpRequest();
        req.open("POST", "/wf/workflow/finish/", false);
        req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
        req.onerror = function() { alert("problem with cleaning up session"); }
        req.onreadystatechange = function() { if(req.readyState === 4 ) {
                window.top.refresh_iframe();
                }}
        req.send(formData);
    }

    function submitForm()
    {
        var form = $("#confirmation_form");
        var formData = form.serialize();
        var req = new XMLHttpRequest();
        req.open("POST", "/wf/workflow/", false);
        req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
        req.onerror = function() { alert("problem submitting confirmation"); }
        req.onreadystatechange = function() { if(req.readyState === 4 ) { delete_manager(); } }
        req.send(formData);
    }


    function formconfirm()
    {
        select.value = "True";
        submitForm();
    }
    function formcancel()
    {
        select.value = "False";
        submitForm();
    }

    var confirmed = {{bypassed|default:"false"}};
    if( confirmed )
    {
        delete_manager();
    }
</script>
<script>

function fixVlans() {
    document.getElementById("vlan_input").value = "True";
    var form = $("#vlan_form");
    var formData = form.serialize();
    var req = new XMLHttpRequest();
    req.open("POST", "/wf/workflow/", false);
    req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
    req.onerror = function() { alert("problem submitting form"); }
    req.onreadystatechange = function() { //replaces current page with response
        if(req.readyState === 4 ) {
            var d = document.getElementById("vlan_warning").innerHTML = "";
            document.getElementById("confirm_button").disabled = false;
            document.getElementById("cancel_button").disabled = false;
        }
    }
    req.send(formData);
}
var problem = {{vlan_warning|default:'false'}};
if(problem){
    var d = document.getElementById("vlan_warning");
    var h3 = document.createElement("h3");
    h3.innerHTML = "WARNING: Vlans not available";
    var h4 = document.createElement("h4");
    h4.innerHTML = "The vlans you selected are not currently available. Would you like to automatically change them?";
    var button1 = document.createElement("button");
    button1.innerHTML = "Correct Vlans For Me";
    button1.onclick = function() { fixVlans(); }

    var button2 = document.createElement("button");
    button2.innerHTML = "Cancel. I will change my vlans";
    button2.onclick = function() { formcancel(); }
    d.appendChild(h3);
    d.appendChild(h4);
    d.appendChild(button1);
    d.appendChild(button2);
    document.getElementById("confirm_button").disabled = true;
    document.getElementById("cancel_button").disabled = true;
}
</script>
</div>
{% block element_messages %}

{% endblock element_messages %}
{% endblock content %}
{% block onleave %}
{% endblock %}
'#n1138'>1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 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 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635
{
  "id": 17,
  "title": "Yardstick Scenarios",
  "originalTitle": "Yardstick Scenarios",
  "tags": [
    "yardstick-tc"
  ],
  "style": "dark",
  "timezone": "browser",
  "editable": true,
  "hideControls": false,
  "sharedCrosshair": false,
  "rows": [
    {
      "collapse": false,
      "editable": true,
      "height": "250px",
      "panels": [
        {
          "content": "<h5 style=\"font-family:Verdana\"> <a style=\"color:#31A7D3\"><center>Yardstick and OPNFV scenarios</center> </a></h5>\n<center>\n<p></p></center>\n<br>Brahmaputra Release criteria for Yardstick tests: a specific scenario is considered ready after 4 consecutive successful executions of Yardstick test cases on CI PODs.</br>\n<br>The singlestats below show results collects in the various OPNFV PODs, at least one run is considered.</br>\n<br>Information on ready scenarios can be found on Yardstick results: <a style=\"color:#31A7D3\"; href=\"l\"> (HTML)</a><a style=\"color:#31A7D3\";\"\"> (PDF)</a>\n\n",
          "editable": true,
          "error": false,
          "id": 1,
          "isNew": true,
          "links": [],
          "mode": "html",
          "span": 12,
          "style": {},
          "title": "Information",
          "type": "text"
        }
      ],
      "title": "Row"
    },
    {
      "collapse": false,
      "editable": true,
      "height": "100px",
      "panels": [
        {
          "content": "<br>\n<h1 style=\"font-family:Verdana\">Average Latency </a></h1></center>",
          "editable": true,
          "error": false,
          "id": 6,
          "isNew": true,
          "links": [],
          "mode": "html",
          "span": 3,
          "style": {},
          "title": "Ericsson-POD2",
          "type": "text"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(50, 172, 45, 0.97)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(245, 54, 54, 0.9)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "height": "",
          "id": 3,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'ericsson-pod2' AND \"deploy_scenario\" = 'os-onos-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "ericsson-pod2"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-onos-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "ONOS",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(21, 44, 204, 0.9)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 4,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'ericsson-pod2' AND \"deploy_scenario\" = 'os-odl_l2-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "ericsson-pod2"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-odl_l2-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "ODL L2",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(241, 23, 23, 0.9)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 5,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'ericsson-pod2' AND \"deploy_scenario\" = 'os-nosdn-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "ericsson-pod2"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-nosdn-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "OS",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        }
      ],
      "title": "New row"
    },
    {
      "collapse": false,
      "editable": true,
      "height": "100px",
      "panels": [
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(80, 87, 79, 0.97)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(245, 54, 54, 0.9)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 7,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'ericsson-pod2' AND \"deploy_scenario\" = 'os-nosdn-ovs-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "ericsson-pod2"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-nosdn-ovs-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "OS-OVS",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(34, 182, 151, 0.9)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 8,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'ericsson-pod2' AND \"deploy_scenario\" = 'os-odl_l2-bgpvpn-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "ericsson-pod2"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-odl_l2-bgpvpn-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "BGP VPN",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(4, 99, 43, 0.9)",
            "rgba(175, 93, 25, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 9,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'ericsson-pod2' AND \"deploy_scenario\" = 'os-odl_l2-sfc-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "ericsson-pod2"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-odl_l2-sfc-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "SFC",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgb(228, 131, 17)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 10,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'ericsson-pod2' AND \"deploy_scenario\" = 'os-odl_l3-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "ericsson-pod2"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-odl_l3-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "ODL-L3",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        }
      ],
      "title": "New row"
    },
    {
      "collapse": false,
      "editable": true,
      "height": "100px",
      "panels": [
        {
          "content": "<br>\n<h1 style=\"font-family:Verdana\">Average Latency </a></h1></center>",
          "editable": true,
          "error": false,
          "id": 11,
          "isNew": true,
          "links": [],
          "mode": "html",
          "span": 3,
          "style": {},
          "title": "Huawei-US-bare-1",
          "type": "text"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(50, 172, 45, 0.97)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(245, 54, 54, 0.9)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "height": "",
          "id": 12,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'huawei-us-deploy-bare-1' AND \"deploy_scenario\" = 'os-onos-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "huawei-us-deploy-bare-1"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-onos-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "ONOS",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(21, 44, 204, 0.9)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 13,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'huawei-us-deploy-bare-1' AND \"deploy_scenario\" = 'os-odl_l2-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "huawei-us-deploy-bare-1"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-odl_l2-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "ODL L2",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(241, 23, 23, 0.9)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 16,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'huawei-us-deploy-bare-1' AND \"deploy_scenario\" = 'os-nosdn-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "huawei-us-deploy-bare-1"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-nosdn-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "OS",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        }
      ],
      "title": "New row"
    },
    {
      "collapse": false,
      "editable": true,
      "height": "100px",
      "panels": [
        {
          "content": "<br>\n<h1 style=\"font-family:Verdana\">Average Latency </a></h1></center>",
          "editable": true,
          "error": false,
          "id": 15,
          "isNew": true,
          "links": [],
          "mode": "html",
          "span": 3,
          "style": {},
          "title": "OPNFV-Jump-1",
          "type": "text"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(21, 44, 204, 0.9)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 17,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'opnfv-jump-1' AND \"deploy_scenario\" = 'os-odl_l2-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "opnfv-jump-1"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-odl_l2-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "ODL L2",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        }
      ],
      "title": "New row"
    },
    {
      "collapse": false,
      "editable": true,
      "height": "100px",
      "panels": [
        {
          "content": "<br>\n<h1 style=\"font-family:Verdana\">Average Latency </a></h1></center>",
          "editable": true,
          "error": false,
          "id": 18,
          "isNew": true,
          "links": [],
          "mode": "html",
          "span": 3,
          "style": {},
          "title": "OPNFV-Jump-2",
          "type": "text"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(21, 44, 204, 0.9)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 19,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'opnfv-jump-2' AND \"deploy_scenario\" = 'os-odl_l2-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "opnfv-jump-2"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-odl_l2-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "ODL L2",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(241, 23, 23, 0.9)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 20,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'opnfv-jump-2' AND \"deploy_scenario\" = 'os-nosdn-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "opnfv-jump-2"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-nosdn-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "OS",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        }
      ],
      "title": "New row"
    },
    {
      "collapse": false,
      "editable": true,
      "height": "100px",
      "panels": [
        {
          "content": "<br>\n<h1 style=\"font-family:Verdana\">Average Latency </a></h1></center>",
          "editable": true,
          "error": false,
          "id": 21,
          "isNew": true,
          "links": [],
          "mode": "html",
          "span": 3,
          "style": {},
          "title": "Orange-fr-POD2",
          "type": "text"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(21, 44, 204, 0.9)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 22,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'orange-fr-pod2' AND \"deploy_scenario\" = 'os-odl_l2-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "orange-fr-pod2"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-odl_l2-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "ODL L2",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        }
      ],
      "title": "New row"
    },
    {
      "collapse": false,
      "editable": true,
      "height": "100px",
      "panels": [
        {
          "content": "<br>\n<h1 style=\"font-family:Verdana\">Average Latency </a></h1></center>",
          "editable": true,
          "error": false,
          "id": 23,
          "isNew": true,
          "links": [],
          "mode": "html",
          "span": 3,
          "style": {},
          "title": "Intel-POD6",
          "type": "text"
        },
        {
          "cacheTimeout": null,
          "colorBackground": true,
          "colorValue": false,
          "colors": [
            "rgba(241, 23, 23, 0.9)",
            "rgba(237, 129, 40, 0.89)",
            "rgba(50, 172, 45, 0.97)"
          ],
          "datasource": "yardstick-vtc",
          "editable": true,
          "error": false,
          "format": "ms",
          "id": 24,
          "interval": null,
          "isNew": true,
          "links": [],
          "maxDataPoints": 100,
          "nullPointMode": "connected",
          "nullText": null,
          "postfix": "",
          "postfixFontSize": "50%",
          "prefix": "",
          "prefixFontSize": "50%",
          "span": 3,
          "sparkline": {
            "fillColor": "rgba(31, 118, 189, 0.18)",
            "full": false,
            "lineColor": "rgb(31, 120, 193)",
            "show": false
          },
          "targets": [
            {
              "dsType": "influxdb",
              "groupBy": [
                {
                  "params": [
                    "7d"
                  ],
                  "type": "time"
                },
                {
                  "params": [
                    "null"
                  ],
                  "type": "fill"
                }
              ],
              "measurement": "opnfv_yardstick_tc002",
              "query": "SELECT mean(\"rtt\") FROM \"opnfv_yardstick_tc002\" WHERE \"pod_name\" = 'intel-pod6' AND \"deploy_scenario\" = 'os-nosdn-nofeature-ha' AND $timeFilter GROUP BY time(7d) fill(null)",
              "refId": "A",
              "resultFormat": "time_series",
              "select": [
                [
                  {
                    "params": [
                      "rtt"
                    ],
                    "type": "field"
                  },
                  {
                    "params": [],
                    "type": "mean"
                  }
                ]
              ],
              "tags": [
                {
                  "key": "pod_name",
                  "operator": "=",
                  "value": "intel-pod6"
                },
                {
                  "condition": "AND",
                  "key": "deploy_scenario",
                  "operator": "=",
                  "value": "os-nosdn-nofeature-ha"
                }
              ]
            }
          ],
          "thresholds": "",
          "timeFrom": "7d",
          "title": "OS",
          "type": "singlestat",
          "valueFontSize": "80%",
          "valueMaps": [
            {
              "op": "=",
              "text": "N/A",
              "value": "null"
            }
          ],
          "valueName": "avg"
        }
      ],
      "title": "New row"
    }
  ],
  "time": {
    "from": "now-6h",
    "to": "now"
  },
  "timepicker": {
    "refresh_intervals": [
      "5s",
      "10s",
      "30s",
      "1m",
      "5m",
      "15m",
      "30m",
      "1h",
      "2h",
      "1d"
    ],
    "time_options": [
      "5m",
      "15m",
      "1h",
      "6h",
      "12h",
      "24h",
      "2d",
      "7d",
      "30d"
    ]
  },
  "templating": {
    "list": []
  },
  "annotations": {
    "list": []
  },
  "schemaVersion": 8,
  "version": 9,
  "links": []
}