Add Danube 2.0 reporting status
[functest.git] / docs / results / danube / 2.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');
16
17         // assign success rate to the gauge
18         function updateReadings() {
19             gaugeScenario1.update(93.3333333333);gaugeScenario2.update(50.0);gaugeScenario3.update(27.2727272727);gaugeScenario4.update(77.7777777778);gaugeScenario5.update(18.1818181818);gaugeScenario6.update(44.4444444444);gaugeScenario7.update(90.9090909091);gaugeScenario8.update(76.6666666667);gaugeScenario9.update(20.0);gaugeScenario10.update(69.696969697);gaugeScenario11.update(18.1818181818);gaugeScenario12.update(80.5555555556);gaugeScenario13.update(90.9090909091);gaugeScenario14.update(76.6666666667);
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-fdio-noha
29        // Filter results
30         var trend1 = data.filter(function(row) {
31              return row["scenario"]=="os-nosdn-fdio-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-odl-gluon-noha
41        // Filter results
42         var trend2 = data.filter(function(row) {
43              return row["scenario"]=="os-odl-gluon-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-ovn-nofeature-noha
53        // Filter results
54         var trend3 = data.filter(function(row) {
55              return row["scenario"]=="os-ovn-nofeature-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_l2-fdio-noha
65        // Filter results
66         var trend4 = data.filter(function(row) {
67              return row["scenario"]=="os-odl_l2-fdio-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_l3-ovs-ha
77        // Filter results
78         var trend5 = data.filter(function(row) {
79              return row["scenario"]=="os-odl_l3-ovs-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-odl-bgpvpn-ha
89        // Filter results
90         var trend6 = data.filter(function(row) {
91              return row["scenario"]=="os-odl-bgpvpn-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-nosdn-kvm-ha
101        // Filter results
102         var trend7 = data.filter(function(row) {
103              return row["scenario"]=="os-nosdn-kvm-ha" && 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-odl_l3-fdio-noha
113        // Filter results
114         var trend8 = data.filter(function(row) {
115              return row["scenario"]=="os-odl_l3-fdio-noha" && 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-nosdn-fdio-ha
125        // Filter results
126         var trend9 = data.filter(function(row) {
127              return row["scenario"]=="os-nosdn-fdio-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_l3-nofeature-ha
137        // Filter results
138         var trend10 = data.filter(function(row) {
139              return row["scenario"]=="os-odl_l3-nofeature-ha" && 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-ha
149        // Filter results
150         var trend11 = data.filter(function(row) {
151              return row["scenario"]=="os-nosdn-ovs-ha" && 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-odl_l2-fdio-ha
161        // Filter results
162         var trend12 = data.filter(function(row) {
163              return row["scenario"]=="os-odl_l2-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-nosdn-nofeature-ha
173        // Filter results
174         var trend13 = data.filter(function(row) {
175              return row["scenario"]=="os-nosdn-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_l3-fdio-ha
185        // Filter results
186         var trend14 = data.filter(function(row) {
187              return row["scenario"]=="os-odl_l3-fdio-ha" && 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         // ****************************************
197     });
198     if ( !window.isLoaded ) {
199         window.addEventListener("load", function() {
200                         onDocumentReady();
201         }, false);
202     } else {
203         onDocumentReady();
204     }
205 </script>
206 <script type="text/javascript">
207 $(document).ready(function (){
208     $(".btn-more").click(function() {
209         $(this).hide();
210         $(this).parent().find(".panel-default").show();
211     });
212 })
213 </script>
214
215   </head>
216     <body>
217     <div class="container">
218       <div class="masthead">
219         <h3 class="text-muted">Functest status page (danube, 2017-05-05 01:45)</h3>
220         <nav>
221           <ul class="nav nav-justified">
222             <li class="active"><a href="http://testresults.opnfv.org/reporting/index.html">Home</a></li>
223             <li><a href="apex.html">Apex</a></li>
224             <li><a href="compass.html">Compass</a></li>
225             <li><a href="fuel.html">Fuel</a></li>
226             <li><a href="joid.html">Joid</a></li>
227           </ul>
228         </nav>
229       </div>
230 <div class="row">
231     <div class="col-md-1"></div>
232     <div class="col-md-10">
233         <div class="page-header">
234             <h2>apex</h2>
235         </div>
236
237         <div class="scenario-overview">
238             <div class="panel-heading"><h4><b>List of last scenarios (danube) run over the last 10 days </b></h4></div>
239                 <table class="table">
240                     <tr>
241                         <th width="40%">Scenario</th>
242                         <th width="20%">Status</th>
243                         <th width="20%">Trend</th>
244                         <th width="10%">Score</th>
245                         <th width="10%">Iteration</th>
246                     </tr>
247                         <tr class="tr-ok">
248                                 <td><a href=http://testresultS.opnfv.org/reporting>os-nosdn-fdio-noha</a></td>
249                                 <td><div id="gaugeScenario1"></div></td>
250                                 <td><div id="trend_svg1"></div></td>
251                                 <td>28/30</td>
252                                 <td>10</td>
253                             </tr><tr class="tr-ok">
254                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/225/console>os-odl-gluon-noha</a></td>
255                                 <td><div id="gaugeScenario2"></div></td>
256                                 <td><div id="trend_svg2"></div></td>
257                                 <td>18/36</td>
258                                 <td>3</td>
259                             </tr><tr class="tr-ok">
260                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/221/console>os-ovn-nofeature-noha</a></td>
261                                 <td><div id="gaugeScenario3"></div></td>
262                                 <td><div id="trend_svg3"></div></td>
263                                 <td>9/33</td>
264                                 <td>5</td>
265                             </tr><tr class="tr-ok">
266                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/226/console>os-odl_l2-fdio-noha</a></td>
267                                 <td><div id="gaugeScenario4"></div></td>
268                                 <td><div id="trend_svg4"></div></td>
269                                 <td>28/36</td>
270                                 <td>6</td>
271                             </tr><tr class="tr-ok">
272                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/220/console>os-odl_l3-ovs-ha</a></td>
273                                 <td><div id="gaugeScenario5"></div></td>
274                                 <td><div id="trend_svg5"></div></td>
275                                 <td>6/33</td>
276                                 <td>4</td>
277                             </tr><tr class="tr-ok">
278                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/224/console>os-odl-bgpvpn-ha</a></td>
279                                 <td><div id="gaugeScenario6"></div></td>
280                                 <td><div id="trend_svg6"></div></td>
281                                 <td>16/36</td>
282                                 <td>3</td>
283                             </tr><tr class="tr-ok">
284                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/228/console>os-nosdn-kvm-ha</a></td>
285                                 <td><div id="gaugeScenario7"></div></td>
286                                 <td><div id="trend_svg7"></div></td>
287                                 <td>30/33</td>
288                                 <td>6</td>
289                             </tr><tr class="tr-ok">
290                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/217/console>os-odl_l3-fdio-noha</a></td>
291                                 <td><div id="gaugeScenario8"></div></td>
292                                 <td><div id="trend_svg8"></div></td>
293                                 <td>23/30</td>
294                                 <td>13</td>
295                             </tr><tr class="tr-ok">
296                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/230/console>os-nosdn-fdio-ha</a></td>
297                                 <td><div id="gaugeScenario9"></div></td>
298                                 <td><div id="trend_svg9"></div></td>
299                                 <td>6/30</td>
300                                 <td>6</td>
301                             </tr><tr class="tr-ok">
302                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/211/console>os-odl_l3-nofeature-ha</a></td>
303                                 <td><div id="gaugeScenario10"></div></td>
304                                 <td><div id="trend_svg10"></div></td>
305                                 <td>23/33</td>
306                                 <td>5</td>
307                             </tr><tr class="tr-ok">
308                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/231/console>os-nosdn-ovs-ha</a></td>
309                                 <td><div id="gaugeScenario11"></div></td>
310                                 <td><div id="trend_svg11"></div></td>
311                                 <td>6/33</td>
312                                 <td>6</td>
313                             </tr><tr class="tr-ok">
314                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/227/console>os-odl_l2-fdio-ha</a></td>
315                                 <td><div id="gaugeScenario12"></div></td>
316                                 <td><div id="trend_svg12"></div></td>
317                                 <td>29/36</td>
318                                 <td>20</td>
319                             </tr><tr class="tr-ok">
320                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/222/console>os-nosdn-nofeature-ha</a></td>
321                                 <td><div id="gaugeScenario13"></div></td>
322                                 <td><div id="trend_svg13"></div></td>
323                                 <td>30/33</td>
324                                 <td>5</td>
325                             </tr><tr class="tr-ok">
326                                 <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-apex-daily-danube-daily-danube/229/console>os-odl_l3-fdio-ha</a></td>
327                                 <td><div id="gaugeScenario14"></div></td>
328                                 <td><div id="trend_svg14"></div></td>
329                                 <td>23/30</td>
330                                 <td>6</td>
331                             </tr>
332                         </table>
333         </div>
334
335
336         <div class="scenario-part">
337             <div class="page-header">
338                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-fdio-noha</b></h3>
339             </div>
340                     <div class="panel panel-default">
341                     <div class="panel-heading">
342                         <span class="panel-header-item">
343                         </span>
344                     </div>
345                     <table class="table">
346                         <tr>
347                             <th>
348                             Health (connection)
349
350                              </th><th>
351                             Health (api)
352
353                              </th><th>
354                             Health (dhcp)
355
356                              </th><th>
357                             vPing (ssh)
358
359                              </th><th>
360                             vPing (userdata)
361
362                              </th><th>
363                             Tempest (smoke)
364
365                              </th><th>
366                             Rally (smoke)
367
368                              </th><th>
369                             Refstack
370
371                              </th><th>
372                             SNAPS
373
374                              </th><th>
375                             Domino
376
377                              </th>
378                         </tr>
379                         <tr class="tr-weather-weather">
380                             <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-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td>
381                         </tr>
382                     </table>
383                 </div>
384         </div><div class="scenario-part">
385             <div class="page-header">
386                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-gluon-noha</b></h3>
387             </div>
388                     <div class="panel panel-default">
389                     <div class="panel-heading">
390                         <span class="panel-header-item">
391                         </span>
392                     </div>
393                     <table class="table">
394                         <tr>
395                             <th>
396                             Health (connection)
397
398                              </th><th>
399                             Health (api)
400
401                              </th><th>
402                             Health (dhcp)
403
404                              </th><th>
405                             vPing (userdata)
406
407                              </th><th>
408                             Tempest (smoke)
409
410                              </th><th>
411                             Rally (smoke)
412
413                              </th><th>
414                             Refstack
415
416                              </th><th>
417                             ODL
418
419                              </th><th>
420                             SNAPS
421
422                              </th><th>
423                             Doctor
424
425                              </th><th>
426                             Domino
427
428                              </th><th>
429                             Netready
430
431                              </th>
432                         </tr>
433                         <tr class="tr-weather-weather">
434                             <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><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
435                         </tr>
436                     </table>
437                 </div>
438         </div><div class="scenario-part">
439             <div class="page-header">
440                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-ovn-nofeature-noha</b></h3>
441             </div>
442                     <div class="panel panel-default">
443                     <div class="panel-heading">
444                         <span class="panel-header-item">
445                         </span>
446                     </div>
447                     <table class="table">
448                         <tr>
449                             <th>
450                             Health (connection)
451
452                              </th><th>
453                             Health (api)
454
455                              </th><th>
456                             Health (dhcp)
457
458                              </th><th>
459                             vPing (ssh)
460
461                              </th><th>
462                             vPing (userdata)
463
464                              </th><th>
465                             Tempest (smoke)
466
467                              </th><th>
468                             Rally (smoke)
469
470                              </th><th>
471                             Refstack
472
473                              </th><th>
474                             SNAPS
475
476                              </th><th>
477                             Doctor
478
479                              </th><th>
480                             Domino
481
482                              </th>
483                         </tr>
484                         <tr class="tr-weather-weather">
485                             <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><td><img src="../../img/weather-storm.png"></td>
486                         </tr>
487                     </table>
488                 </div>
489         </div><div class="scenario-part">
490             <div class="page-header">
491                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl_l2-fdio-noha</b></h3>
492             </div>
493                     <div class="panel panel-default">
494                     <div class="panel-heading">
495                         <span class="panel-header-item">
496                         </span>
497                     </div>
498                     <table class="table">
499                         <tr>
500                             <th>
501                             Health (connection)
502
503                              </th><th>
504                             Health (api)
505
506                              </th><th>
507                             Health (dhcp)
508
509                              </th><th>
510                             vPing (ssh)
511
512                              </th><th>
513                             vPing (userdata)
514
515                              </th><th>
516                             Tempest (smoke)
517
518                              </th><th>
519                             Rally (smoke)
520
521                              </th><th>
522                             Refstack
523
524                              </th><th>
525                             ODL
526
527                              </th><th>
528                             FDS
529
530                              </th><th>
531                             SNAPS
532
533                              </th><th>
534                             Domino
535
536                              </th>
537                         </tr>
538                         <tr class="tr-weather-weather">
539                             <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-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-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td>
540                         </tr>
541                     </table>
542                 </div>
543         </div><div class="scenario-part">
544             <div class="page-header">
545                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl_l3-ovs-ha</b></h3>
546             </div>
547                     <div class="panel panel-default">
548                     <div class="panel-heading">
549                         <span class="panel-header-item">
550                         </span>
551                     </div>
552                     <table class="table">
553                         <tr>
554                             <th>
555                             Health (connection)
556
557                              </th><th>
558                             Health (api)
559
560                              </th><th>
561                             Health (dhcp)
562
563                              </th><th>
564                             vPing (userdata)
565
566                              </th><th>
567                             Tempest (smoke)
568
569                              </th><th>
570                             Rally (smoke)
571
572                              </th><th>
573                             Refstack
574
575                              </th><th>
576                             ODL
577
578                              </th><th>
579                             SNAPS
580
581                              </th><th>
582                             Doctor
583
584                              </th><th>
585                             Domino
586
587                              </th>
588                         </tr>
589                         <tr class="tr-weather-weather">
590                             <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>
591                         </tr>
592                     </table>
593                 </div>
594         </div><div class="scenario-part">
595             <div class="page-header">
596                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-bgpvpn-ha</b></h3>
597             </div>
598                     <div class="panel panel-default">
599                     <div class="panel-heading">
600                         <span class="panel-header-item">
601                         </span>
602                     </div>
603                     <table class="table">
604                         <tr>
605                             <th>
606                             Health (connection)
607
608                              </th><th>
609                             Health (api)
610
611                              </th><th>
612                             Health (dhcp)
613
614                              </th><th>
615                             vPing (userdata)
616
617                              </th><th>
618                             Tempest (smoke)
619
620                              </th><th>
621                             Rally (smoke)
622
623                              </th><th>
624                             Refstack
625
626                              </th><th>
627                             ODL
628
629                              </th><th>
630                             SNAPS
631
632                              </th><th>
633                             Doctor
634
635                              </th><th>
636                             bgpvpn
637
638                              </th><th>
639                             Domino
640
641                              </th>
642                         </tr>
643                         <tr class="tr-weather-weather">
644                             <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><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td>
645                         </tr>
646                     </table>
647                 </div>
648         </div><div class="scenario-part">
649             <div class="page-header">
650                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-kvm-ha</b></h3>
651             </div>
652                     <div class="panel panel-default">
653                     <div class="panel-heading">
654                         <span class="panel-header-item">
655                         </span>
656                     </div>
657                     <table class="table">
658                         <tr>
659                             <th>
660                             Health (connection)
661
662                              </th><th>
663                             Health (api)
664
665                              </th><th>
666                             Health (dhcp)
667
668                              </th><th>
669                             vPing (ssh)
670
671                              </th><th>
672                             vPing (userdata)
673
674                              </th><th>
675                             Tempest (smoke)
676
677                              </th><th>
678                             Rally (smoke)
679
680                              </th><th>
681                             Refstack
682
683                              </th><th>
684                             SNAPS
685
686                              </th><th>
687                             Doctor
688
689                              </th><th>
690                             Domino
691
692                              </th>
693                         </tr>
694                         <tr class="tr-weather-weather">
695                             <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-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>
696                         </tr>
697                     </table>
698                 </div>
699         </div><div class="scenario-part">
700             <div class="page-header">
701                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl_l3-fdio-noha</b></h3>
702             </div>
703                     <div class="panel panel-default">
704                     <div class="panel-heading">
705                         <span class="panel-header-item">
706                         </span>
707                     </div>
708                     <table class="table">
709                         <tr>
710                             <th>
711                             Health (connection)
712
713                              </th><th>
714                             Health (api)
715
716                              </th><th>
717                             Health (dhcp)
718
719                              </th><th>
720                             vPing (userdata)
721
722                              </th><th>
723                             Tempest (smoke)
724
725                              </th><th>
726                             Rally (smoke)
727
728                              </th><th>
729                             Refstack
730
731                              </th><th>
732                             ODL
733
734                              </th><th>
735                             SNAPS
736
737                              </th><th>
738                             Domino
739
740                              </th>
741                         </tr>
742                         <tr class="tr-weather-weather">
743                             <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-storm.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-clear.png"></td><td><img src="../../img/weather-clear.png"></td>
744                         </tr>
745                     </table>
746                 </div>
747         </div><div class="scenario-part">
748             <div class="page-header">
749                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-fdio-ha</b></h3>
750             </div>
751                     <div class="panel panel-default">
752                     <div class="panel-heading">
753                         <span class="panel-header-item">
754                         </span>
755                     </div>
756                     <table class="table">
757                         <tr>
758                             <th>
759                             Health (connection)
760
761                              </th><th>
762                             Health (api)
763
764                              </th><th>
765                             Health (dhcp)
766
767                              </th><th>
768                             vPing (ssh)
769
770                              </th><th>
771                             vPing (userdata)
772
773                              </th><th>
774                             Tempest (smoke)
775
776                              </th><th>
777                             Rally (smoke)
778
779                              </th><th>
780                             Refstack
781
782                              </th><th>
783                             SNAPS
784
785                              </th><th>
786                             Domino
787
788                              </th>
789                         </tr>
790                         <tr class="tr-weather-weather">
791                             <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>
792                         </tr>
793                     </table>
794                 </div>
795         </div><div class="scenario-part">
796             <div class="page-header">
797                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl_l3-nofeature-ha</b></h3>
798             </div>
799                     <div class="panel panel-default">
800                     <div class="panel-heading">
801                         <span class="panel-header-item">
802                         </span>
803                     </div>
804                     <table class="table">
805                         <tr>
806                             <th>
807                             Health (connection)
808
809                              </th><th>
810                             Health (api)
811
812                              </th><th>
813                             Health (dhcp)
814
815                              </th><th>
816                             vPing (userdata)
817
818                              </th><th>
819                             Tempest (smoke)
820
821                              </th><th>
822                             Rally (smoke)
823
824                              </th><th>
825                             Refstack
826
827                              </th><th>
828                             ODL
829
830                              </th><th>
831                             SNAPS
832
833                              </th><th>
834                             Doctor
835
836                              </th><th>
837                             Domino
838
839                              </th>
840                         </tr>
841                         <tr class="tr-weather-weather">
842                             <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-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td>
843                         </tr>
844                     </table>
845                 </div>
846         </div><div class="scenario-part">
847             <div class="page-header">
848                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-ovs-ha</b></h3>
849             </div>
850                     <div class="panel panel-default">
851                     <div class="panel-heading">
852                         <span class="panel-header-item">
853                         </span>
854                     </div>
855                     <table class="table">
856                         <tr>
857                             <th>
858                             Health (connection)
859
860                              </th><th>
861                             Health (api)
862
863                              </th><th>
864                             Health (dhcp)
865
866                              </th><th>
867                             vPing (ssh)
868
869                              </th><th>
870                             vPing (userdata)
871
872                              </th><th>
873                             Tempest (smoke)
874
875                              </th><th>
876                             Rally (smoke)
877
878                              </th><th>
879                             Refstack
880
881                              </th><th>
882                             SNAPS
883
884                              </th><th>
885                             Doctor
886
887                              </th><th>
888                             Domino
889
890                              </th>
891                         </tr>
892                         <tr class="tr-weather-weather">
893                             <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>
894                         </tr>
895                     </table>
896                 </div>
897         </div><div class="scenario-part">
898             <div class="page-header">
899                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl_l2-fdio-ha</b></h3>
900             </div>
901                     <div class="panel panel-default">
902                     <div class="panel-heading">
903                         <span class="panel-header-item">
904                         </span>
905                     </div>
906                     <table class="table">
907                         <tr>
908                             <th>
909                             Health (connection)
910
911                              </th><th>
912                             Health (api)
913
914                              </th><th>
915                             Health (dhcp)
916
917                              </th><th>
918                             vPing (ssh)
919
920                              </th><th>
921                             vPing (userdata)
922
923                              </th><th>
924                             Tempest (smoke)
925
926                              </th><th>
927                             Rally (smoke)
928
929                              </th><th>
930                             Refstack
931
932                              </th><th>
933                             ODL
934
935                              </th><th>
936                             FDS
937
938                              </th><th>
939                             SNAPS
940
941                              </th><th>
942                             Domino
943
944                              </th>
945                         </tr>
946                         <tr class="tr-weather-weather">
947                             <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-overcast.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-few-clouds.png"></td>
948                         </tr>
949                     </table>
950                 </div>
951         </div><div class="scenario-part">
952             <div class="page-header">
953                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-ha</b></h3>
954             </div>
955                     <div class="panel panel-default">
956                     <div class="panel-heading">
957                         <span class="panel-header-item">
958                         </span>
959                     </div>
960                     <table class="table">
961                         <tr>
962                             <th>
963                             Health (connection)
964
965                              </th><th>
966                             Health (api)
967
968                              </th><th>
969                             Health (dhcp)
970
971                              </th><th>
972                             vPing (ssh)
973
974                              </th><th>
975                             vPing (userdata)
976
977                              </th><th>
978                             Tempest (smoke)
979
980                              </th><th>
981                             Rally (smoke)
982
983                              </th><th>
984                             Refstack
985
986                              </th><th>
987                             SNAPS
988
989                              </th><th>
990                             Doctor
991
992                              </th><th>
993                             Domino
994
995                              </th>
996                         </tr>
997                         <tr class="tr-weather-weather">
998                             <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-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>
999                         </tr>
1000                     </table>
1001                 </div>
1002         </div><div class="scenario-part">
1003             <div class="page-header">
1004                 <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl_l3-fdio-ha</b></h3>
1005             </div>
1006                     <div class="panel panel-default">
1007                     <div class="panel-heading">
1008                         <span class="panel-header-item">
1009                         </span>
1010                     </div>
1011                     <table class="table">
1012                         <tr>
1013                             <th>
1014                             Health (connection)
1015
1016                              </th><th>
1017                             Health (api)
1018
1019                              </th><th>
1020                             Health (dhcp)
1021
1022                              </th><th>
1023                             vPing (userdata)
1024
1025                              </th><th>
1026                             Tempest (smoke)
1027
1028                              </th><th>
1029                             Rally (smoke)
1030
1031                              </th><th>
1032                             Refstack
1033
1034                              </th><th>
1035                             ODL
1036
1037                              </th><th>
1038                             SNAPS
1039
1040                              </th><th>
1041                             Domino
1042
1043                              </th>
1044                         </tr>
1045                         <tr class="tr-weather-weather">
1046                             <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-storm.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-clear.png"></td><td><img src="../../img/weather-clear.png"></td>
1047                         </tr>
1048                     </table>
1049                 </div>
1050         </div>
1051     see <a href="https://wiki.opnfv.org/pages/viewpage.action?pageId=6828617">Functest scoring wiki page</a> for details on scenario scoring
1052      <div> <br>
1053     <a href="./status-apex.pdf" class="myButtonPdf">Export to PDF</a>   <a href="./scenario_history_apex.txt" class="myButtonCSV">Export to CSV</a>
1054     </div>
1055     </div>
1056     <div class="col-md-1"></div>
1057 </div>