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