Publish "Functest on steroids" (Plugfest-Gambia)
[functest.git] / docs / results / euphrates / 5.0 / apex.html
1  <html>
2   <head>
3     <meta charset="utf-8">
4     <!-- Bootstrap core CSS -->
5     <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
6     <link href="../../js/default.css" rel="stylesheet">
7     <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
8     <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
9     <script type="text/javascript" src="http://d3js.org/d3.v2.min.js"></script>
10     <script type="text/javascript" src="../../js/gauge.js"></script>
11     <script type="text/javascript" src="../../js/trend.js"></script>
12     <script>
13     function onDocumentReady() {
14         // Gauge management
15         var gaugeScenario1 = gauge('#gaugeScenario1');var gaugeScenario2 = gauge('#gaugeScenario2');var gaugeScenario3 = gauge('#gaugeScenario3');var gaugeScenario4 = gauge('#gaugeScenario4');var gaugeScenario5 = gauge('#gaugeScenario5');var gaugeScenario6 = gauge('#gaugeScenario6');var gaugeScenario7 = gauge('#gaugeScenario7');var gaugeScenario8 = gauge('#gaugeScenario8');var gaugeScenario9 = gauge('#gaugeScenario9');var gaugeScenario10 = gauge('#gaugeScenario10');var gaugeScenario11 = gauge('#gaugeScenario11');var gaugeScenario12 = gauge('#gaugeScenario12');var gaugeScenario13 = gauge('#gaugeScenario13');var gaugeScenario14 = gauge('#gaugeScenario14');var gaugeScenario15 = gauge('#gaugeScenario15');var gaugeScenario16 = gauge('#gaugeScenario16');var gaugeScenario17 = gauge('#gaugeScenario17');var gaugeScenario18 = gauge('#gaugeScenario18');var gaugeScenario19 = gauge('#gaugeScenario19');
16
17         // assign success rate to the gauge
18         function updateReadings() {
19             gaugeScenario1.update(22.2222222222);gaugeScenario2.update(50.0);gaugeScenario3.update(72.7272727273);gaugeScenario4.update(26.6666666667);gaugeScenario5.update(72.7272727273);gaugeScenario6.update(22.2222222222);gaugeScenario7.update(33.3333333333);gaugeScenario8.update(22.2222222222);gaugeScenario9.update(88.8888888889);gaugeScenario10.update(90.0);gaugeScenario11.update(22.2222222222);gaugeScenario12.update(66.6666666667);gaugeScenario13.update(90.0);gaugeScenario14.update(18.1818181818);gaugeScenario15.update(100.0);gaugeScenario16.update(100.0);gaugeScenario17.update(96.2962962963);gaugeScenario18.update(100.0);gaugeScenario19.update(96.2962962963);
20         }
21         updateReadings();
22         }
23
24         // trend line management
25         d3.csv("./scenario_history.txt", function(data) {
26        // ***************************************
27        // Create the trend line
28       // for scenario os-nosdn-kvm_ovs_dpdk-noha
29        // Filter results
30         var trend1 = data.filter(function(row) {
31              return row["scenario"]=="os-nosdn-kvm_ovs_dpdk-noha" && row["installer"]=="apex";
32         })
33        // Parse the date
34         trend1.forEach(function(d) {
35             d.date = parseDate(d.date);
36             d.score = +d.score
37         });
38         // Draw the trend line
39         var mytrend = trend("#trend_svg1",trend1)
40         // ****************************************// for scenario os-nosdn-fdio-noha
41        // Filter results
42         var trend2 = data.filter(function(row) {
43              return row["scenario"]=="os-nosdn-fdio-noha" && row["installer"]=="apex";
44         })
45        // Parse the date
46         trend2.forEach(function(d) {
47             d.date = parseDate(d.date);
48             d.score = +d.score
49         });
50         // Draw the trend line
51         var mytrend = trend("#trend_svg2",trend2)
52         // ****************************************// for scenario os-odl-fdio-noha
53        // Filter results
54         var trend3 = data.filter(function(row) {
55              return row["scenario"]=="os-odl-fdio-noha" && row["installer"]=="apex";
56         })
57        // Parse the date
58         trend3.forEach(function(d) {
59             d.date = parseDate(d.date);
60             d.score = +d.score
61         });
62         // Draw the trend line
63         var mytrend = trend("#trend_svg3",trend3)
64         // ****************************************// for scenario os-odl-sfc-noha
65        // Filter results
66         var trend4 = data.filter(function(row) {
67              return row["scenario"]=="os-odl-sfc-noha" && row["installer"]=="apex";
68         })
69        // Parse the date
70         trend4.forEach(function(d) {
71             d.date = parseDate(d.date);
72             d.score = +d.score
73         });
74         // Draw the trend line
75         var mytrend = trend("#trend_svg4",trend4)
76         // ****************************************// for scenario os-odl-fdio-ha
77        // Filter results
78         var trend5 = data.filter(function(row) {
79              return row["scenario"]=="os-odl-fdio-ha" && row["installer"]=="apex";
80         })
81        // Parse the date
82         trend5.forEach(function(d) {
83             d.date = parseDate(d.date);
84             d.score = +d.score
85         });
86         // Draw the trend line
87         var mytrend = trend("#trend_svg5",trend5)
88         // ****************************************// for scenario os-nosdn-kvm_ovs_dpdk-ha
89        // Filter results
90         var trend6 = data.filter(function(row) {
91              return row["scenario"]=="os-nosdn-kvm_ovs_dpdk-ha" && row["installer"]=="apex";
92         })
93        // Parse the date
94         trend6.forEach(function(d) {
95             d.date = parseDate(d.date);
96             d.score = +d.score
97         });
98         // Draw the trend line
99         var mytrend = trend("#trend_svg6",trend6)
100         // ****************************************// for scenario os-ovn-nofeature-noha
101        // Filter results
102         var trend7 = data.filter(function(row) {
103              return row["scenario"]=="os-ovn-nofeature-noha" && row["installer"]=="apex";
104         })
105        // Parse the date
106         trend7.forEach(function(d) {
107             d.date = parseDate(d.date);
108             d.score = +d.score
109         });
110         // Draw the trend line
111         var mytrend = trend("#trend_svg7",trend7)
112         // ****************************************// for scenario os-nosdn-ovs_dpdk-ha
113        // Filter results
114         var trend8 = data.filter(function(row) {
115              return row["scenario"]=="os-nosdn-ovs_dpdk-ha" && row["installer"]=="apex";
116         })
117        // Parse the date
118         trend8.forEach(function(d) {
119             d.date = parseDate(d.date);
120             d.score = +d.score
121         });
122         // Draw the trend line
123         var mytrend = trend("#trend_svg8",trend8)
124         // ****************************************// for scenario os-odl-bgpvpn-ha
125        // Filter results
126         var trend9 = data.filter(function(row) {
127              return row["scenario"]=="os-odl-bgpvpn-ha" && row["installer"]=="apex";
128         })
129        // Parse the date
130         trend9.forEach(function(d) {
131             d.date = parseDate(d.date);
132             d.score = +d.score
133         });
134         // Draw the trend line
135         var mytrend = trend("#trend_svg9",trend9)
136         // ****************************************// for scenario os-odl-nofeature-noha
137        // Filter results
138         var trend10 = data.filter(function(row) {
139              return row["scenario"]=="os-odl-nofeature-noha" && row["installer"]=="apex";
140         })
141        // Parse the date
142         trend10.forEach(function(d) {
143             d.date = parseDate(d.date);
144             d.score = +d.score
145         });
146         // Draw the trend line
147         var mytrend = trend("#trend_svg10",trend10)
148         // ****************************************// for scenario os-nosdn-ovs_dpdk-noha
149        // Filter results
150         var trend11 = data.filter(function(row) {
151              return row["scenario"]=="os-nosdn-ovs_dpdk-noha" && row["installer"]=="apex";
152         })
153        // Parse the date
154         trend11.forEach(function(d) {
155             d.date = parseDate(d.date);
156             d.score = +d.score
157         });
158         // Draw the trend line
159         var mytrend = trend("#trend_svg11",trend11)
160         // ****************************************// for scenario os-nosdn-fdio-ha
161        // Filter results
162         var trend12 = data.filter(function(row) {
163              return row["scenario"]=="os-nosdn-fdio-ha" && row["installer"]=="apex";
164         })
165        // Parse the date
166         trend12.forEach(function(d) {
167             d.date = parseDate(d.date);
168             d.score = +d.score
169         });
170         // Draw the trend line
171         var mytrend = trend("#trend_svg12",trend12)
172         // ****************************************// for scenario os-odl-nofeature-ha
173        // Filter results
174         var trend13 = data.filter(function(row) {
175              return row["scenario"]=="os-odl-nofeature-ha" && row["installer"]=="apex";
176         })
177        // Parse the date
178         trend13.forEach(function(d) {
179             d.date = parseDate(d.date);
180             d.score = +d.score
181         });
182         // Draw the trend line
183         var mytrend = trend("#trend_svg13",trend13)
184         // ****************************************// for scenario os-odl-fdio_dvr-noha
185        // Filter results
186         var trend14 = data.filter(function(row) {
187              return row["scenario"]=="os-odl-fdio_dvr-noha" && row["installer"]=="apex";
188         })
189        // Parse the date
190         trend14.forEach(function(d) {
191             d.date = parseDate(d.date);
192             d.score = +d.score
193         });
194         // Draw the trend line
195         var mytrend = trend("#trend_svg14",trend14)
196         // ****************************************// for scenario os-nosdn-bar-noha
197        // Filter results
198         var trend15 = data.filter(function(row) {
199              return row["scenario"]=="os-nosdn-bar-noha" && row["installer"]=="apex";
200         })
201        // Parse the date
202         trend15.forEach(function(d) {
203             d.date = parseDate(d.date);
204             d.score = +d.score
205         });
206         // Draw the trend line
207         var mytrend = trend("#trend_svg15",trend15)
208         // ****************************************// for scenario os-nosdn-nofeature-noha
209        // Filter results
210         var trend16 = data.filter(function(row) {
211              return row["scenario"]=="os-nosdn-nofeature-noha" && row["installer"]=="apex";
212         })
213        // Parse the date
214         trend16.forEach(function(d) {
215             d.date = parseDate(d.date);
216             d.score = +d.score
217         });
218         // Draw the trend line
219         var mytrend = trend("#trend_svg16",trend16)
220         // ****************************************// for scenario os-nosdn-bar-ha
221        // Filter results
222         var trend17 = data.filter(function(row) {
223              return row["scenario"]=="os-nosdn-bar-ha" && row["installer"]=="apex";
224         })
225        // Parse the date
226         trend17.forEach(function(d) {
227             d.date = parseDate(d.date);
228             d.score = +d.score
229         });
230         // Draw the trend line
231         var mytrend = trend("#trend_svg17",trend17)
232         // ****************************************// for scenario os-nosdn-calipso-noha
233        // Filter results
234         var trend18 = data.filter(function(row) {
235              return row["scenario"]=="os-nosdn-calipso-noha" && row["installer"]=="apex";
236         })
237        // Parse the date
238         trend18.forEach(function(d) {
239             d.date = parseDate(d.date);
240             d.score = +d.score
241         });
242         // Draw the trend line
243         var mytrend = trend("#trend_svg18",trend18)
244         // ****************************************// for scenario os-nosdn-nofeature-ha
245        // Filter results
246         var trend19 = data.filter(function(row) {
247              return row["scenario"]=="os-nosdn-nofeature-ha" && row["installer"]=="apex";
248         })
249        // Parse the date
250         trend19.forEach(function(d) {
251             d.date = parseDate(d.date);
252             d.score = +d.score
253         });
254         // Draw the trend line
255         var mytrend = trend("#trend_svg19",trend19)
256         // ****************************************
257     });
258     if ( !window.isLoaded ) {
259         window.addEventListener("load", function() {
260                         onDocumentReady();
261         }, false);
262     } else {
263         onDocumentReady();
264     }
265 </script>
266 <script type="text/javascript">
267 $(document).ready(function (){
268     $(".btn-more").click(function() {
269         $(this).hide();
270         $(this).parent().find(".panel-default").show();
271     });
272 })
273 </script>
274
275   </head>
276     <body>
277     <div class="container">
278       <div class="masthead">
279         <h3 class="text-muted">Functest status page (euphrates, 2017-10-20 08:41)</h3>
280         <nav>
281           <ul class="nav nav-justified">
282             <li class="active"><a href="http://testresults.opnfv.org/reporting/index.html">Home</a></li>
283             <li><a href="./apex.html">Apex</a></li>
284             <li><a href="./compass.html">Compass</a></li>
285             <li><a href="./daisy.html">Daisy</a></li>
286             <li><a href="./fuel@x86.html">Fuel@x86</a></li>
287             <li><a href="./fuel@aarch64.html">Fuel@aarch64</a></li>
288             <li><a href="./joid.html">Joid</a></li>
289           </ul>
290         </nav>
291       </div>
292 <div class="row">
293     <div class="col-md-1"></div>
294     <div class="col-md-10">
295         <div class="page-header">
296             <h2>apex</h2>
297         </div>
298
299         <div class="scenario-overview">
300             <div class="panel-heading"><h4><b>List of last scenarios (euphrates) run over the last 10 days </b></h4></div>
301                 <table class="table">
302                     <tr>
303                         <th width="40%">HA Scenario</th>
304                         <th width="20%">Status</th>
305                         <th width="20%">Trend</th>
306                         <th width="10%">Score</th>
307                         <th width="10%">Iteration</th>
308                     </tr>
309                         <tr class="tr-ok">
310                             
311                             </tr><tr class="tr-ok">
312                             
313                             </tr><tr class="tr-ok">
314                             
315                             </tr><tr class="tr-ok">
316                             
317                             </tr><tr class="tr-ok">
318                             <td><a href=http://testresultS.opnfv.org/reporting>os-odl-fdio-ha</a></td>
319                                 <td><div id="gaugeScenario5"></div></td>
320                                 <td><div id="trend_svg5"></div></td>
321                                 <td>24/33</td>
322                                 <td>12</td>
323                             </tr><tr class="tr-ok">
324                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/130/console>os-nosdn-kvm_ovs_dpdk-ha</a></td>
325                                 <td><div id="gaugeScenario6"></div></td>
326                                 <td><div id="trend_svg6"></div></td>
327                                 <td>4/18</td>
328                                 <td>3</td>
329                             </tr><tr class="tr-ok">
330                             
331                             </tr><tr class="tr-ok">
332                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/108/console>os-nosdn-ovs_dpdk-ha</a></td>
333                                 <td><div id="gaugeScenario8"></div></td>
334                                 <td><div id="trend_svg8"></div></td>
335                                 <td>4/18</td>
336                                 <td>2</td>
337                             </tr><tr class="tr-ok">
338                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/113/console>os-odl-bgpvpn-ha</a></td>
339                                 <td><div id="gaugeScenario9"></div></td>
340                                 <td><div id="trend_svg9"></div></td>
341                                 <td>16/18</td>
342                                 <td>2</td>
343                             </tr><tr class="tr-ok">
344                             
345                             </tr><tr class="tr-ok">
346                             
347                             </tr><tr class="tr-ok">
348                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/139/console>os-nosdn-fdio-ha</a></td>
349                                 <td><div id="gaugeScenario12"></div></td>
350                                 <td><div id="trend_svg12"></div></td>
351                                 <td>12/18</td>
352                                 <td>3</td>
353                             </tr><tr class="tr-ok">
354                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/135/console>os-odl-nofeature-ha</a></td>
355                                 <td><div id="gaugeScenario13"></div></td>
356                                 <td><div id="trend_svg13"></div></td>
357                                 <td>18/20</td>
358                                 <td>3</td>
359                             </tr><tr class="tr-ok">
360                             
361                             </tr><tr class="tr-ok">
362                             
363                             </tr><tr class="tr-ok">
364                             
365                             </tr><tr class="tr-ok">
366                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/121/console>os-nosdn-bar-ha</a></td>
367                                 <td><div id="gaugeScenario17"></div></td>
368                                 <td><div id="trend_svg17"></div></td>
369                                 <td>26/27</td>
370                                 <td>4</td>
371                             </tr><tr class="tr-ok">
372                             
373                             </tr><tr class="tr-ok">
374                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/134/console>os-nosdn-nofeature-ha</a></td>
375                                 <td><div id="gaugeScenario19"></div></td>
376                                 <td><div id="trend_svg19"></div></td>
377                                 <td>26/27</td>
378                                 <td>4</td>
379                             </tr>
380                             <br>
381                 </table>
382                 <br>
383                <table class="table">
384                     <tr>
385                         <th width="40%">NOHA Scenario</th>
386                         <th width="20%">Status</th>
387                         <th width="20%">Trend</th>
388                         <th width="10%">Score</th>
389                         <th width="10%">Iteration</th>
390                     </tr>
391                         <tr class="tr-ok">
392                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/138/console>os-nosdn-kvm_ovs_dpdk-noha</a></td>
393                                 <td><div id="gaugeScenario1"></div></td>
394                                 <td><div id="trend_svg1"></div></td>
395                                 <td>4/18</td>
396                                 <td>2</td>
397                             </tr><tr class="tr-ok">
398                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/115/console>os-nosdn-fdio-noha</a></td>
399                                 <td><div id="gaugeScenario2"></div></td>
400                                 <td><div id="trend_svg2"></div></td>
401                                 <td>9/18</td>
402                                 <td>3</td>
403                             </tr><tr class="tr-ok">
404                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/137/console>os-odl-fdio-noha</a></td>
405                                 <td><div id="gaugeScenario3"></div></td>
406                                 <td><div id="trend_svg3"></div></td>
407                                 <td>24/33</td>
408                                 <td>9</td>
409                             </tr><tr class="tr-ok">
410                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/131/console>os-odl-sfc-noha</a></td>
411                                 <td><div id="gaugeScenario4"></div></td>
412                                 <td><div id="trend_svg4"></div></td>
413                                 <td>8/30</td>
414                                 <td>4</td>
415                             </tr><tr class="tr-ok">
416                             
417                             </tr><tr class="tr-ok">
418                             
419                             </tr><tr class="tr-ok">
420                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/114/console>os-ovn-nofeature-noha</a></td>
421                                 <td><div id="gaugeScenario7"></div></td>
422                                 <td><div id="trend_svg7"></div></td>
423                                 <td>6/18</td>
424                                 <td>2</td>
425                             </tr><tr class="tr-ok">
426                             
427                             </tr><tr class="tr-ok">
428                             
429                             </tr><tr class="tr-ok">
430                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/136/console>os-odl-nofeature-noha</a></td>
431                                 <td><div id="gaugeScenario10"></div></td>
432                                 <td><div id="trend_svg10"></div></td>
433                                 <td>18/20</td>
434                                 <td>2</td>
435                             </tr><tr class="tr-ok">
436                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/123/console>os-nosdn-ovs_dpdk-noha</a></td>
437                                 <td><div id="gaugeScenario11"></div></td>
438                                 <td><div id="trend_svg11"></div></td>
439                                 <td>4/18</td>
440                                 <td>3</td>
441                             </tr><tr class="tr-ok">
442                             
443                             </tr><tr class="tr-ok">
444                             
445                             </tr><tr class="tr-ok">
446                             <td><a href=http://testresultS.opnfv.org/reporting>os-odl-fdio_dvr-noha</a></td>
447                                 <td><div id="gaugeScenario14"></div></td>
448                                 <td><div id="trend_svg14"></div></td>
449                                 <td>6/33</td>
450                                 <td>4</td>
451                             </tr><tr class="tr-ok">
452                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/122/console>os-nosdn-bar-noha</a></td>
453                                 <td><div id="gaugeScenario15"></div></td>
454                                 <td><div id="trend_svg15"></div></td>
455                                 <td>18/18</td>
456                                 <td>3</td>
457                             </tr><tr class="tr-ok">
458                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/133/console>os-nosdn-nofeature-noha</a></td>
459                                 <td><div id="gaugeScenario16"></div></td>
460                                 <td><div id="trend_svg16"></div></td>
461                                 <td>18/18</td>
462                                 <td>3</td>
463                             </tr><tr class="tr-ok">
464                             
465                             </tr><tr class="tr-ok">
466                             <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/128/console>os-nosdn-calipso-noha</a></td>
467                                 <td><div id="gaugeScenario18"></div></td>
468                                 <td><div id="trend_svg18"></div></td>
469                                 <td>18/18</td>
470                                 <td>3</td>
471                             </tr><tr class="tr-ok">
472                             
473                             </tr>
474                 </table>
475
476         </div>
477
478
479         <div class="scenario-part">
480             <div class="page-header">
481                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-kvm_ovs_dpdk-noha</b></h3>
482             </div>
483                     <div class="panel panel-default">
484                     <div class="panel-heading">
485                         <span class="panel-header-item">
486                         </span>
487                     </div>
488                     <table class="table">
489                         <tr>
490                             <th>
491                             Health (connection)
492                             
493                              </th><th>
494                             Health (api)
495                             
496                              </th><th>
497                             Health (dhcp)
498                             
499                              </th><th>
500                             vPing (ssh)
501                             
502                              </th><th>
503                             vPing (userdata)
504                             
505                              </th><th>
506                             Tempest (smoke)
507                             
508                              </th><th>
509                             Rally (smoke)
510                             
511                              </th><th>
512                             Refstack
513                             
514                              </th><th>
515                             SNAPS
516                             
517                              </th>
518                         </tr>
519                         <tr class="tr-weather-weather">
520                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td>
521                         </tr>
522                     </table>
523                 </div>
524         </div><div class="scenario-part">
525             <div class="page-header">
526                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-fdio-noha</b></h3>
527             </div>
528                     <div class="panel panel-default">
529                     <div class="panel-heading">
530                         <span class="panel-header-item">
531                         </span>
532                     </div>
533                     <table class="table">
534                         <tr>
535                             <th>
536                             Health (connection)
537                             
538                              </th><th>
539                             Health (api)
540                             
541                              </th><th>
542                             Health (dhcp)
543                             
544                              </th><th>
545                             vPing (ssh)
546                             
547                              </th><th>
548                             vPing (userdata)
549                             
550                              </th><th>
551                             Tempest (smoke)
552                             
553                              </th><th>
554                             Rally (smoke)
555                             
556                              </th><th>
557                             Refstack
558                             
559                              </th><th>
560                             SNAPS
561                             
562                              </th><th>
563                             Domino
564                             *
565                              </th>
566                         </tr>
567                         <tr class="tr-weather-weather">
568                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
569                         </tr>
570                     </table>
571                 </div>
572         </div><div class="scenario-part">
573             <div class="page-header">
574                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-fdio-noha</b></h3>
575             </div>
576                     <div class="panel panel-default">
577                     <div class="panel-heading">
578                         <span class="panel-header-item">
579                         </span>
580                     </div>
581                     <table class="table">
582                         <tr>
583                             <th>
584                             Health (connection)
585                             
586                              </th><th>
587                             Health (api)
588                             
589                              </th><th>
590                             Health (dhcp)
591                             
592                              </th><th>
593                             vPing (ssh)
594                             
595                              </th><th>
596                             vPing (userdata)
597                             
598                              </th><th>
599                             Tempest (smoke)
600                             
601                              </th><th>
602                             Rally (smoke)
603                             
604                              </th><th>
605                             Refstack
606                             
607                              </th><th>
608                             ODL
609                             
610                              </th><th>
611                             FDS
612                             
613                              </th><th>
614                             SNAPS
615                             
616                              </th><th>
617                             Domino
618                             *
619                              </th>
620                         </tr>
621                         <tr class="tr-weather-weather">
622                             <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-clear.png"></td>
623                         </tr>
624                     </table>
625                 </div>
626         </div><div class="scenario-part">
627             <div class="page-header">
628                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-sfc-noha</b></h3>
629             </div>
630                     <div class="panel panel-default">
631                     <div class="panel-heading">
632                         <span class="panel-header-item">
633                         </span>
634                     </div>
635                     <table class="table">
636                         <tr>
637                             <th>
638                             Health (connection)
639                             
640                              </th><th>
641                             Health (api)
642                             
643                              </th><th>
644                             Health (dhcp)
645                             
646                              </th><th>
647                             vPing (ssh)
648                             
649                              </th><th>
650                             vPing (userdata)
651                             
652                              </th><th>
653                             Tempest (smoke)
654                             
655                              </th><th>
656                             Rally (smoke)
657                             
658                              </th><th>
659                             Refstack
660                             
661                              </th><th>
662                             ODL
663                             
664                              </th><th>
665                             SNAPS
666                             
667                              </th><th>
668                             Doctor
669                             *
670                              </th><th>
671                             SFC
672                             *
673                              </th><th>
674                             Domino
675                             *
676                              </th>
677                         </tr>
678                         <tr class="tr-weather-weather">
679                             <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
680                         </tr>
681                     </table>
682                 </div>
683         </div><div class="scenario-part">
684             <div class="page-header">
685                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-fdio-ha</b></h3>
686             </div>
687                     <div class="panel panel-default">
688                     <div class="panel-heading">
689                         <span class="panel-header-item">
690                         </span>
691                     </div>
692                     <table class="table">
693                         <tr>
694                             <th>
695                             Health (connection)
696                             
697                              </th><th>
698                             Health (api)
699                             
700                              </th><th>
701                             Health (dhcp)
702                             
703                              </th><th>
704                             vPing (ssh)
705                             
706                              </th><th>
707                             vPing (userdata)
708                             
709                              </th><th>
710                             Tempest (smoke)
711                             
712                              </th><th>
713                             Rally (smoke)
714                             
715                              </th><th>
716                             Refstack
717                             
718                              </th><th>
719                             ODL
720                             
721                              </th><th>
722                             FDS
723                             
724                              </th><th>
725                             SNAPS
726                             
727                              </th><th>
728                             Domino
729                             *
730                              </th>
731                         </tr>
732                         <tr class="tr-weather-weather">
733                             <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-clear.png"></td>
734                         </tr>
735                     </table>
736                 </div>
737         </div><div class="scenario-part">
738             <div class="page-header">
739                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-kvm_ovs_dpdk-ha</b></h3>
740             </div>
741                     <div class="panel panel-default">
742                     <div class="panel-heading">
743                         <span class="panel-header-item">
744                         </span>
745                     </div>
746                     <table class="table">
747                         <tr>
748                             <th>
749                             Health (connection)
750                             
751                              </th><th>
752                             Health (api)
753                             
754                              </th><th>
755                             Health (dhcp)
756                             
757                              </th><th>
758                             vPing (ssh)
759                             
760                              </th><th>
761                             vPing (userdata)
762                             
763                              </th><th>
764                             Tempest (smoke)
765                             
766                              </th><th>
767                             Rally (smoke)
768                             
769                              </th><th>
770                             Refstack
771                             
772                              </th><th>
773                             SNAPS
774                             
775                              </th>
776                         </tr>
777                         <tr class="tr-weather-weather">
778                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td>
779                         </tr>
780                     </table>
781                 </div>
782         </div><div class="scenario-part">
783             <div class="page-header">
784                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-ovn-nofeature-noha</b></h3>
785             </div>
786                     <div class="panel panel-default">
787                     <div class="panel-heading">
788                         <span class="panel-header-item">
789                         </span>
790                     </div>
791                     <table class="table">
792                         <tr>
793                             <th>
794                             Health (connection)
795                             
796                              </th><th>
797                             Health (api)
798                             
799                              </th><th>
800                             Health (dhcp)
801                             
802                              </th><th>
803                             vPing (ssh)
804                             
805                              </th><th>
806                             vPing (userdata)
807                             
808                              </th><th>
809                             Tempest (smoke)
810                             
811                              </th><th>
812                             Rally (smoke)
813                             
814                              </th><th>
815                             Refstack
816                             
817                              </th><th>
818                             SNAPS
819                             
820                              </th><th>
821                             Doctor
822                             *
823                              </th><th>
824                             Domino
825                             *
826                              </th>
827                         </tr>
828                         <tr class="tr-weather-weather">
829                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
830                         </tr>
831                     </table>
832                 </div>
833         </div><div class="scenario-part">
834             <div class="page-header">
835                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-ovs_dpdk-ha</b></h3>
836             </div>
837                     <div class="panel panel-default">
838                     <div class="panel-heading">
839                         <span class="panel-header-item">
840                         </span>
841                     </div>
842                     <table class="table">
843                         <tr>
844                             <th>
845                             Health (connection)
846                             
847                              </th><th>
848                             Health (api)
849                             
850                              </th><th>
851                             Health (dhcp)
852                             
853                              </th><th>
854                             vPing (ssh)
855                             
856                              </th><th>
857                             vPing (userdata)
858                             
859                              </th><th>
860                             Tempest (smoke)
861                             
862                              </th><th>
863                             Rally (smoke)
864                             
865                              </th><th>
866                             Refstack
867                             
868                              </th><th>
869                             SNAPS
870                             
871                              </th>
872                         </tr>
873                         <tr class="tr-weather-weather">
874                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td>
875                         </tr>
876                     </table>
877                 </div>
878         </div><div class="scenario-part">
879             <div class="page-header">
880                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-bgpvpn-ha</b></h3>
881             </div>
882                     <div class="panel panel-default">
883                     <div class="panel-heading">
884                         <span class="panel-header-item">
885                         </span>
886                     </div>
887                     <table class="table">
888                         <tr>
889                             <th>
890                             Health (connection)
891                             
892                              </th><th>
893                             Health (api)
894                             
895                              </th><th>
896                             Health (dhcp)
897                             
898                              </th><th>
899                             vPing (userdata)
900                             
901                              </th><th>
902                             Tempest (smoke)
903                             
904                              </th><th>
905                             Rally (smoke)
906                             
907                              </th><th>
908                             Refstack
909                             
910                              </th><th>
911                             ODL
912                             
913                              </th><th>
914                             SNAPS
915                             
916                              </th><th>
917                             Doctor
918                             *
919                              </th><th>
920                             bgpvpn
921                             *
922                              </th><th>
923                             Domino
924                             *
925                              </th>
926                         </tr>
927                         <tr class="tr-weather-weather">
928                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
929                         </tr>
930                     </table>
931                 </div>
932         </div><div class="scenario-part">
933             <div class="page-header">
934                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-nofeature-noha</b></h3>
935             </div>
936                     <div class="panel panel-default">
937                     <div class="panel-heading">
938                         <span class="panel-header-item">
939                         </span>
940                     </div>
941                     <table class="table">
942                         <tr>
943                             <th>
944                             Health (connection)
945                             
946                              </th><th>
947                             Health (api)
948                             
949                              </th><th>
950                             Health (dhcp)
951                             
952                              </th><th>
953                             vPing (ssh)
954                             
955                              </th><th>
956                             vPing (userdata)
957                             
958                              </th><th>
959                             Tempest (smoke)
960                             
961                              </th><th>
962                             Rally (smoke)
963                             
964                              </th><th>
965                             Refstack
966                             
967                              </th><th>
968                             ODL
969                             
970                              </th><th>
971                             SNAPS
972                             
973                              </th><th>
974                             Doctor
975                             *
976                              </th><th>
977                             Domino
978                             *
979                              </th>
980                         </tr>
981                         <tr class="tr-weather-weather">
982                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
983                         </tr>
984                     </table>
985                 </div>
986         </div><div class="scenario-part">
987             <div class="page-header">
988                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-ovs_dpdk-noha</b></h3>
989             </div>
990                     <div class="panel panel-default">
991                     <div class="panel-heading">
992                         <span class="panel-header-item">
993                         </span>
994                     </div>
995                     <table class="table">
996                         <tr>
997                             <th>
998                             Health (connection)
999                             
1000                              </th><th>
1001                             Health (api)
1002                             
1003                              </th><th>
1004                             Health (dhcp)
1005                             
1006                              </th><th>
1007                             vPing (ssh)
1008                             
1009                              </th><th>
1010                             vPing (userdata)
1011                             
1012                              </th><th>
1013                             Tempest (smoke)
1014                             
1015                              </th><th>
1016                             Rally (smoke)
1017                             
1018                              </th><th>
1019                             Refstack
1020                             
1021                              </th><th>
1022                             SNAPS
1023                             
1024                              </th>
1025                         </tr>
1026                         <tr class="tr-weather-weather">
1027                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td>
1028                         </tr>
1029                     </table>
1030                 </div>
1031         </div><div class="scenario-part">
1032             <div class="page-header">
1033                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-fdio-ha</b></h3>
1034             </div>
1035                     <div class="panel panel-default">
1036                     <div class="panel-heading">
1037                         <span class="panel-header-item">
1038                         </span>
1039                     </div>
1040                     <table class="table">
1041                         <tr>
1042                             <th>
1043                             Health (connection)
1044                             
1045                              </th><th>
1046                             Health (api)
1047                             
1048                              </th><th>
1049                             Health (dhcp)
1050                             
1051                              </th><th>
1052                             vPing (ssh)
1053                             
1054                              </th><th>
1055                             vPing (userdata)
1056                             
1057                              </th><th>
1058                             Tempest (smoke)
1059                             
1060                              </th><th>
1061                             Rally (smoke)
1062                             
1063                              </th><th>
1064                             Refstack
1065                             
1066                              </th><th>
1067                             SNAPS
1068                             
1069                              </th><th>
1070                             Domino
1071                             *
1072                              </th>
1073                         </tr>
1074                         <tr class="tr-weather-weather">
1075                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
1076                         </tr>
1077                     </table>
1078                 </div>
1079         </div><div class="scenario-part">
1080             <div class="page-header">
1081                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-nofeature-ha</b></h3>
1082             </div>
1083                     <div class="panel panel-default">
1084                     <div class="panel-heading">
1085                         <span class="panel-header-item">
1086                         </span>
1087                     </div>
1088                     <table class="table">
1089                         <tr>
1090                             <th>
1091                             Health (connection)
1092                             
1093                              </th><th>
1094                             Health (api)
1095                             
1096                              </th><th>
1097                             Health (dhcp)
1098                             
1099                              </th><th>
1100                             vPing (ssh)
1101                             
1102                              </th><th>
1103                             vPing (userdata)
1104                             
1105                              </th><th>
1106                             Tempest (smoke)
1107                             
1108                              </th><th>
1109                             Rally (smoke)
1110                             
1111                              </th><th>
1112                             Refstack
1113                             
1114                              </th><th>
1115                             ODL
1116                             
1117                              </th><th>
1118                             SNAPS
1119                             
1120                              </th><th>
1121                             Doctor
1122                             *
1123                              </th><th>
1124                             Domino
1125                             *
1126                              </th>
1127                         </tr>
1128                         <tr class="tr-weather-weather">
1129                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
1130                         </tr>
1131                     </table>
1132                 </div>
1133         </div><div class="scenario-part">
1134             <div class="page-header">
1135                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-fdio_dvr-noha</b></h3>
1136             </div>
1137                     <div class="panel panel-default">
1138                     <div class="panel-heading">
1139                         <span class="panel-header-item">
1140                         </span>
1141                     </div>
1142                     <table class="table">
1143                         <tr>
1144                             <th>
1145                             Health (connection)
1146                             
1147                              </th><th>
1148                             Health (api)
1149                             
1150                              </th><th>
1151                             Health (dhcp)
1152                             
1153                              </th><th>
1154                             vPing (ssh)
1155                             
1156                              </th><th>
1157                             vPing (userdata)
1158                             
1159                              </th><th>
1160                             Tempest (smoke)
1161                             
1162                              </th><th>
1163                             Rally (smoke)
1164                             
1165                              </th><th>
1166                             Refstack
1167                             
1168                              </th><th>
1169                             ODL
1170                             
1171                              </th><th>
1172                             FDS
1173                             
1174                              </th><th>
1175                             SNAPS
1176                             
1177                              </th><th>
1178                             Domino
1179                             *
1180                              </th>
1181                         </tr>
1182                         <tr class="tr-weather-weather">
1183                             <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-overcast.png"></td>
1184                         </tr>
1185                     </table>
1186                 </div>
1187         </div><div class="scenario-part">
1188             <div class="page-header">
1189                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-bar-noha</b></h3>
1190             </div>
1191                     <div class="panel panel-default">
1192                     <div class="panel-heading">
1193                         <span class="panel-header-item">
1194                         </span>
1195                     </div>
1196                     <table class="table">
1197                         <tr>
1198                             <th>
1199                             Health (connection)
1200                             
1201                              </th><th>
1202                             Health (api)
1203                             
1204                              </th><th>
1205                             Health (dhcp)
1206                             
1207                              </th><th>
1208                             vPing (ssh)
1209                             
1210                              </th><th>
1211                             vPing (userdata)
1212                             
1213                              </th><th>
1214                             Tempest (smoke)
1215                             
1216                              </th><th>
1217                             Rally (smoke)
1218                             
1219                              </th><th>
1220                             Refstack
1221                             
1222                              </th><th>
1223                             SNAPS
1224                             
1225                              </th><th>
1226                             Doctor
1227                             *
1228                              </th><th>
1229                             Domino
1230                             *
1231                              </th><th>
1232                             Barometer
1233                             *
1234                              </th>
1235                         </tr>
1236                         <tr class="tr-weather-weather">
1237                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td>
1238                         </tr>
1239                     </table>
1240                 </div>
1241         </div><div class="scenario-part">
1242             <div class="page-header">
1243                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-noha</b></h3>
1244             </div>
1245                     <div class="panel panel-default">
1246                     <div class="panel-heading">
1247                         <span class="panel-header-item">
1248                         </span>
1249                     </div>
1250                     <table class="table">
1251                         <tr>
1252                             <th>
1253                             Health (connection)
1254                             
1255                              </th><th>
1256                             Health (api)
1257                             
1258                              </th><th>
1259                             Health (dhcp)
1260                             
1261                              </th><th>
1262                             vPing (ssh)
1263                             
1264                              </th><th>
1265                             vPing (userdata)
1266                             
1267                              </th><th>
1268                             Tempest (smoke)
1269                             
1270                              </th><th>
1271                             Rally (smoke)
1272                             
1273                              </th><th>
1274                             Refstack
1275                             
1276                              </th><th>
1277                             SNAPS
1278                             
1279                              </th><th>
1280                             Doctor
1281                             *
1282                              </th><th>
1283                             Domino
1284                             *
1285                              </th>
1286                         </tr>
1287                         <tr class="tr-weather-weather">
1288                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
1289                         </tr>
1290                     </table>
1291                 </div>
1292         </div><div class="scenario-part">
1293             <div class="page-header">
1294                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-bar-ha</b></h3>
1295             </div>
1296                     <div class="panel panel-default">
1297                     <div class="panel-heading">
1298                         <span class="panel-header-item">
1299                         </span>
1300                     </div>
1301                     <table class="table">
1302                         <tr>
1303                             <th>
1304                             Health (connection)
1305                             
1306                              </th><th>
1307                             Health (api)
1308                             
1309                              </th><th>
1310                             Health (dhcp)
1311                             
1312                              </th><th>
1313                             vPing (ssh)
1314                             
1315                              </th><th>
1316                             vPing (userdata)
1317                             
1318                              </th><th>
1319                             Tempest (smoke)
1320                             
1321                              </th><th>
1322                             Rally (smoke)
1323                             
1324                              </th><th>
1325                             Refstack
1326                             
1327                              </th><th>
1328                             SNAPS
1329                             
1330                              </th><th>
1331                             Doctor
1332                             *
1333                              </th><th>
1334                             Domino
1335                             *
1336                              </th><th>
1337                             Barometer
1338                             *
1339                              </th>
1340                         </tr>
1341                         <tr class="tr-weather-weather">
1342                             <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-overcast.png"></td>
1343                         </tr>
1344                     </table>
1345                 </div>
1346         </div><div class="scenario-part">
1347             <div class="page-header">
1348                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-calipso-noha</b></h3>
1349             </div>
1350                     <div class="panel panel-default">
1351                     <div class="panel-heading">
1352                         <span class="panel-header-item">
1353                         </span>
1354                     </div>
1355                     <table class="table">
1356                         <tr>
1357                             <th>
1358                             Health (connection)
1359                             
1360                              </th><th>
1361                             Health (api)
1362                             
1363                              </th><th>
1364                             Health (dhcp)
1365                             
1366                              </th><th>
1367                             vPing (ssh)
1368                             
1369                              </th><th>
1370                             vPing (userdata)
1371                             
1372                              </th><th>
1373                             Tempest (smoke)
1374                             
1375                              </th><th>
1376                             Rally (smoke)
1377                             
1378                              </th><th>
1379                             Refstack
1380                             
1381                              </th><th>
1382                             SNAPS
1383                             
1384                              </th><th>
1385                             Doctor
1386                             *
1387                              </th><th>
1388                             Domino
1389                             *
1390                              </th>
1391                         </tr>
1392                         <tr class="tr-weather-weather">
1393                             <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
1394                         </tr>
1395                     </table>
1396                 </div>
1397         </div><div class="scenario-part">
1398             <div class="page-header">
1399                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-ha</b></h3>
1400             </div>
1401                     <div class="panel panel-default">
1402                     <div class="panel-heading">
1403                         <span class="panel-header-item">
1404                         </span>
1405                     </div>
1406                     <table class="table">
1407                         <tr>
1408                             <th>
1409                             Health (connection)
1410                             
1411                              </th><th>
1412                             Health (api)
1413                             
1414                              </th><th>
1415                             Health (dhcp)
1416                             
1417                              </th><th>
1418                             vPing (ssh)
1419                             
1420                              </th><th>
1421                             vPing (userdata)
1422                             
1423                              </th><th>
1424                             Tempest (smoke)
1425                             
1426                              </th><th>
1427                             Rally (smoke)
1428                             
1429                              </th><th>
1430                             Refstack
1431                             
1432                              </th><th>
1433                             SNAPS
1434                             
1435                              </th><th>
1436                             Doctor
1437                             *
1438                              </th><th>
1439                             Domino
1440                             *
1441                              </th><th>
1442                             vIMS (Cloudify)
1443                             *
1444                              </th><th>
1445                             OpenIMS (OpenBaton)
1446                             *
1447                              </th><th>
1448                             vIMS (OpenBaton)
1449                             *
1450                              </th>
1451                         </tr>
1452                         <tr class="tr-weather-weather">
1453                             <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td>
1454                         </tr>
1455                     </table>
1456                 </div>
1457         </div>
1458     see <a href="https://wiki.opnfv.org/pages/viewpage.action?pageId=6828617">Functest scoring wiki page</a> for details on scenario scoring
1459      <div> <br>
1460     <a href="./status-apex.pdf" class="myButtonPdf">Export to PDF</a>   <a href="./scenario_history_apex.txt" class="myButtonCSV">Export to CSV</a>
1461     </div>
1462     </div>
1463     <div class="col-md-1"></div>
1464 </div>