Save Euphrates results in repo 31/46031/1
authorMorgan Richomme <morgan.richomme@orange.com>
Fri, 20 Oct 2017 10:04:54 +0000 (12:04 +0200)
committerMorgan Richomme <morgan.richomme@orange.com>
Fri, 20 Oct 2017 13:37:10 +0000 (13:37 +0000)
Change-Id: I6e7fb1d4b81572a151f47fc071a1ae27f1b41e97
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
(cherry picked from commit 39f856fd8304cdb056beb61d85c81a0613230e40)

docs/results/euphrates/5.0/apex.html [new file with mode: 0644]
docs/results/euphrates/5.0/compass.html [new file with mode: 0644]
docs/results/euphrates/5.0/daisy.html [new file with mode: 0644]
docs/results/euphrates/5.0/fuel@aarch64.html [new file with mode: 0644]
docs/results/euphrates/5.0/fuel@x86.html [new file with mode: 0644]
docs/results/euphrates/5.0/joid.html [new file with mode: 0644]
docs/results/euphrates/5.0/scenario_history.txt [new file with mode: 0644]

diff --git a/docs/results/euphrates/5.0/apex.html b/docs/results/euphrates/5.0/apex.html
new file mode 100644 (file)
index 0000000..2a75054
--- /dev/null
@@ -0,0 +1,1464 @@
+ <html>
+  <head>
+    <meta charset="utf-8">
+    <!-- Bootstrap core CSS -->
+    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
+    <link href="../../js/default.css" rel="stylesheet">
+    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
+    <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
+    <script type="text/javascript" src="http://d3js.org/d3.v2.min.js"></script>
+    <script type="text/javascript" src="../../js/gauge.js"></script>
+    <script type="text/javascript" src="../../js/trend.js"></script>
+    <script>
+    function onDocumentReady() {
+       // Gauge management
+        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');
+
+       // assign success rate to the gauge
+       function updateReadings() {
+           gaugeScenario1.update(22.2222222222);gaugeScenario2.update(50.0);gaugeScenario3.update(72.7272727273);gaugeScenario4.update(26.6666666667);gaugeScenario5.update(72.7272727273);gaugeScenario6.update(22.2222222222);gaugeScenario7.update(33.3333333333);gaugeScenario8.update(22.2222222222);gaugeScenario9.update(88.8888888889);gaugeScenario10.update(90.0);gaugeScenario11.update(22.2222222222);gaugeScenario12.update(66.6666666667);gaugeScenario13.update(90.0);gaugeScenario14.update(18.1818181818);gaugeScenario15.update(100.0);gaugeScenario16.update(100.0);gaugeScenario17.update(96.2962962963);gaugeScenario18.update(100.0);gaugeScenario19.update(96.2962962963);
+       }
+       updateReadings();
+        }
+
+        // trend line management
+        d3.csv("./scenario_history.txt", function(data) {
+       // ***************************************
+       // Create the trend line
+      // for scenario os-nosdn-kvm_ovs_dpdk-noha
+       // Filter results
+        var trend1 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-kvm_ovs_dpdk-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend1.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg1",trend1)
+        // ****************************************// for scenario os-nosdn-fdio-noha
+       // Filter results
+        var trend2 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-fdio-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend2.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg2",trend2)
+        // ****************************************// for scenario os-odl-fdio-noha
+       // Filter results
+        var trend3 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-fdio-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend3.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg3",trend3)
+        // ****************************************// for scenario os-odl-sfc-noha
+       // Filter results
+        var trend4 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-sfc-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend4.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg4",trend4)
+        // ****************************************// for scenario os-odl-fdio-ha
+       // Filter results
+        var trend5 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-fdio-ha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend5.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg5",trend5)
+        // ****************************************// for scenario os-nosdn-kvm_ovs_dpdk-ha
+       // Filter results
+        var trend6 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-kvm_ovs_dpdk-ha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend6.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg6",trend6)
+        // ****************************************// for scenario os-ovn-nofeature-noha
+       // Filter results
+        var trend7 = data.filter(function(row) {
+            return row["scenario"]=="os-ovn-nofeature-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend7.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg7",trend7)
+        // ****************************************// for scenario os-nosdn-ovs_dpdk-ha
+       // Filter results
+        var trend8 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-ovs_dpdk-ha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend8.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg8",trend8)
+        // ****************************************// for scenario os-odl-bgpvpn-ha
+       // Filter results
+        var trend9 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-bgpvpn-ha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend9.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg9",trend9)
+        // ****************************************// for scenario os-odl-nofeature-noha
+       // Filter results
+        var trend10 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-nofeature-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend10.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg10",trend10)
+        // ****************************************// for scenario os-nosdn-ovs_dpdk-noha
+       // Filter results
+        var trend11 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-ovs_dpdk-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend11.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg11",trend11)
+        // ****************************************// for scenario os-nosdn-fdio-ha
+       // Filter results
+        var trend12 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-fdio-ha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend12.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg12",trend12)
+        // ****************************************// for scenario os-odl-nofeature-ha
+       // Filter results
+        var trend13 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-nofeature-ha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend13.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg13",trend13)
+        // ****************************************// for scenario os-odl-fdio_dvr-noha
+       // Filter results
+        var trend14 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-fdio_dvr-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend14.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg14",trend14)
+        // ****************************************// for scenario os-nosdn-bar-noha
+       // Filter results
+        var trend15 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-bar-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend15.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg15",trend15)
+        // ****************************************// for scenario os-nosdn-nofeature-noha
+       // Filter results
+        var trend16 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend16.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg16",trend16)
+        // ****************************************// for scenario os-nosdn-bar-ha
+       // Filter results
+        var trend17 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-bar-ha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend17.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg17",trend17)
+        // ****************************************// for scenario os-nosdn-calipso-noha
+       // Filter results
+        var trend18 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-calipso-noha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend18.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg18",trend18)
+        // ****************************************// for scenario os-nosdn-nofeature-ha
+       // Filter results
+        var trend19 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-ha" && row["installer"]=="apex";
+       })
+       // Parse the date
+        trend19.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg19",trend19)
+        // ****************************************
+    });
+    if ( !window.isLoaded ) {
+        window.addEventListener("load", function() {
+                       onDocumentReady();
+        }, false);
+    } else {
+       onDocumentReady();
+    }
+</script>
+<script type="text/javascript">
+$(document).ready(function (){
+    $(".btn-more").click(function() {
+       $(this).hide();
+       $(this).parent().find(".panel-default").show();
+    });
+})
+</script>
+
+  </head>
+    <body>
+    <div class="container">
+      <div class="masthead">
+        <h3 class="text-muted">Functest status page (euphrates, 2017-10-20 08:41)</h3>
+        <nav>
+          <ul class="nav nav-justified">
+            <li class="active"><a href="http://testresults.opnfv.org/reporting/index.html">Home</a></li>
+            <li><a href="./apex.html">Apex</a></li>
+            <li><a href="./compass.html">Compass</a></li>
+            <li><a href="./daisy.html">Daisy</a></li>
+            <li><a href="./fuel@x86.html">Fuel@x86</a></li>
+            <li><a href="./fuel@aarch64.html">Fuel@aarch64</a></li>
+            <li><a href="./joid.html">Joid</a></li>
+          </ul>
+        </nav>
+      </div>
+<div class="row">
+    <div class="col-md-1"></div>
+    <div class="col-md-10">
+        <div class="page-header">
+            <h2>apex</h2>
+        </div>
+
+        <div class="scenario-overview">
+            <div class="panel-heading"><h4><b>List of last scenarios (euphrates) run over the last 10 days </b></h4></div>
+                <table class="table">
+                    <tr>
+                        <th width="40%">HA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=http://testresultS.opnfv.org/reporting>os-odl-fdio-ha</a></td>
+                                <td><div id="gaugeScenario5"></div></td>
+                                <td><div id="trend_svg5"></div></td>
+                                <td>24/33</td>
+                                <td>12</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/130/console>os-nosdn-kvm_ovs_dpdk-ha</a></td>
+                                <td><div id="gaugeScenario6"></div></td>
+                                <td><div id="trend_svg6"></div></td>
+                                <td>4/18</td>
+                                <td>3</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/108/console>os-nosdn-ovs_dpdk-ha</a></td>
+                                <td><div id="gaugeScenario8"></div></td>
+                                <td><div id="trend_svg8"></div></td>
+                                <td>4/18</td>
+                                <td>2</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/113/console>os-odl-bgpvpn-ha</a></td>
+                                <td><div id="gaugeScenario9"></div></td>
+                                <td><div id="trend_svg9"></div></td>
+                                <td>16/18</td>
+                                <td>2</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/139/console>os-nosdn-fdio-ha</a></td>
+                                <td><div id="gaugeScenario12"></div></td>
+                                <td><div id="trend_svg12"></div></td>
+                                <td>12/18</td>
+                                <td>3</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/135/console>os-odl-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario13"></div></td>
+                                <td><div id="trend_svg13"></div></td>
+                                <td>18/20</td>
+                                <td>3</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/121/console>os-nosdn-bar-ha</a></td>
+                                <td><div id="gaugeScenario17"></div></td>
+                                <td><div id="trend_svg17"></div></td>
+                                <td>26/27</td>
+                                <td>4</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/134/console>os-nosdn-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario19"></div></td>
+                                <td><div id="trend_svg19"></div></td>
+                                <td>26/27</td>
+                                <td>4</td>
+                            </tr>
+                            <br>
+                </table>
+                <br>
+               <table class="table">
+                    <tr>
+                        <th width="40%">NOHA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/138/console>os-nosdn-kvm_ovs_dpdk-noha</a></td>
+                                <td><div id="gaugeScenario1"></div></td>
+                                <td><div id="trend_svg1"></div></td>
+                                <td>4/18</td>
+                                <td>2</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/115/console>os-nosdn-fdio-noha</a></td>
+                                <td><div id="gaugeScenario2"></div></td>
+                                <td><div id="trend_svg2"></div></td>
+                                <td>9/18</td>
+                                <td>3</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/137/console>os-odl-fdio-noha</a></td>
+                                <td><div id="gaugeScenario3"></div></td>
+                                <td><div id="trend_svg3"></div></td>
+                                <td>24/33</td>
+                                <td>9</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/131/console>os-odl-sfc-noha</a></td>
+                                <td><div id="gaugeScenario4"></div></td>
+                                <td><div id="trend_svg4"></div></td>
+                                <td>8/30</td>
+                                <td>4</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/114/console>os-ovn-nofeature-noha</a></td>
+                                <td><div id="gaugeScenario7"></div></td>
+                                <td><div id="trend_svg7"></div></td>
+                                <td>6/18</td>
+                                <td>2</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/136/console>os-odl-nofeature-noha</a></td>
+                                <td><div id="gaugeScenario10"></div></td>
+                                <td><div id="trend_svg10"></div></td>
+                                <td>18/20</td>
+                                <td>2</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/123/console>os-nosdn-ovs_dpdk-noha</a></td>
+                                <td><div id="gaugeScenario11"></div></td>
+                                <td><div id="trend_svg11"></div></td>
+                                <td>4/18</td>
+                                <td>3</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=http://testresultS.opnfv.org/reporting>os-odl-fdio_dvr-noha</a></td>
+                                <td><div id="gaugeScenario14"></div></td>
+                                <td><div id="trend_svg14"></div></td>
+                                <td>6/33</td>
+                                <td>4</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/122/console>os-nosdn-bar-noha</a></td>
+                                <td><div id="gaugeScenario15"></div></td>
+                                <td><div id="trend_svg15"></div></td>
+                                <td>18/18</td>
+                                <td>3</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/133/console>os-nosdn-nofeature-noha</a></td>
+                                <td><div id="gaugeScenario16"></div></td>
+                                <td><div id="trend_svg16"></div></td>
+                                <td>18/18</td>
+                                <td>3</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-apex-baremetal-daily-euphrates/128/console>os-nosdn-calipso-noha</a></td>
+                                <td><div id="gaugeScenario18"></div></td>
+                                <td><div id="trend_svg18"></div></td>
+                                <td>18/18</td>
+                                <td>3</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr>
+                </table>
+
+        </div>
+
+
+        <div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-kvm_ovs_dpdk-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-fdio-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-fdio-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            FDS
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-sfc-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Doctor
+                            *
+                             </th><th>
+                            SFC
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-fdio-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            FDS
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-kvm_ovs_dpdk-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-ovn-nofeature-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Doctor
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-ovs_dpdk-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-bgpvpn-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Doctor
+                            *
+                             </th><th>
+                            bgpvpn
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-nofeature-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Doctor
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-ovs_dpdk-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-fdio-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Doctor
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-fdio_dvr-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            FDS
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-overcast.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-bar-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Doctor
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th><th>
+                            Barometer
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Doctor
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-bar-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Doctor
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th><th>
+                            Barometer
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-overcast.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-calipso-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Doctor
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Doctor
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th><th>
+                            vIMS (Cloudify)
+                            *
+                             </th><th>
+                            OpenIMS (OpenBaton)
+                            *
+                             </th><th>
+                            vIMS (OpenBaton)
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div>
+    see <a href="https://wiki.opnfv.org/pages/viewpage.action?pageId=6828617">Functest scoring wiki page</a> for details on scenario scoring
+     <div> <br>
+    <a href="./status-apex.pdf" class="myButtonPdf">Export to PDF</a>   <a href="./scenario_history_apex.txt" class="myButtonCSV">Export to CSV</a>
+    </div>
+    </div>
+    <div class="col-md-1"></div>
+</div>
diff --git a/docs/results/euphrates/5.0/compass.html b/docs/results/euphrates/5.0/compass.html
new file mode 100644 (file)
index 0000000..d62ba4d
--- /dev/null
@@ -0,0 +1,943 @@
+ <html>
+  <head>
+    <meta charset="utf-8">
+    <!-- Bootstrap core CSS -->
+    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
+    <link href="../../js/default.css" rel="stylesheet">
+    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
+    <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
+    <script type="text/javascript" src="http://d3js.org/d3.v2.min.js"></script>
+    <script type="text/javascript" src="../../js/gauge.js"></script>
+    <script type="text/javascript" src="../../js/trend.js"></script>
+    <script>
+    function onDocumentReady() {
+       // Gauge management
+        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');
+
+       // assign success rate to the gauge
+       function updateReadings() {
+           gaugeScenario1.update(96.2962962963);gaugeScenario2.update(66.6666666667);gaugeScenario3.update(80.0);gaugeScenario4.update(77.7777777778);gaugeScenario5.update(96.2962962963);gaugeScenario6.update(86.6666666667);gaugeScenario7.update(96.2962962963);gaugeScenario8.update(11.1111111111);gaugeScenario9.update(11.1111111111);gaugeScenario10.update(77.7777777778);gaugeScenario11.update(86.6666666667);gaugeScenario12.update(88.8888888889);
+       }
+       updateReadings();
+        }
+
+        // trend line management
+        d3.csv("./scenario_history.txt", function(data) {
+       // ***************************************
+       // Create the trend line
+      // for scenario os-nosdn-kvm-noha
+       // Filter results
+        var trend1 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-kvm-noha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend1.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg1",trend1)
+        // ****************************************// for scenario os-odl-sfc-noha
+       // Filter results
+        var trend2 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-sfc-noha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend2.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg2",trend2)
+        // ****************************************// for scenario os-odl_l2-moon-noha
+       // Filter results
+        var trend3 = data.filter(function(row) {
+            return row["scenario"]=="os-odl_l2-moon-noha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend3.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg3",trend3)
+        // ****************************************// for scenario os-odl_l3-nofeature-ha
+       // Filter results
+        var trend4 = data.filter(function(row) {
+            return row["scenario"]=="os-odl_l3-nofeature-ha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend4.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg4",trend4)
+        // ****************************************// for scenario os-nosdn-kvm-ha
+       // Filter results
+        var trend5 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-kvm-ha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend5.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg5",trend5)
+        // ****************************************// for scenario os-odl-sfc-ha
+       // Filter results
+        var trend6 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-sfc-ha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend6.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg6",trend6)
+        // ****************************************// for scenario os-nosdn-nofeature-noha
+       // Filter results
+        var trend7 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-noha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend7.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg7",trend7)
+        // ****************************************// for scenario os-nosdn-ovs_dpdk-ha
+       // Filter results
+        var trend8 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-ovs_dpdk-ha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend8.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg8",trend8)
+        // ****************************************// for scenario os-nosdn-ovs_dpdk-noha
+       // Filter results
+        var trend9 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-ovs_dpdk-noha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend9.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg9",trend9)
+        // ****************************************// for scenario os-odl_l3-nofeature-noha
+       // Filter results
+        var trend10 = data.filter(function(row) {
+            return row["scenario"]=="os-odl_l3-nofeature-noha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend10.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg10",trend10)
+        // ****************************************// for scenario os-odl_l2-moon-ha
+       // Filter results
+        var trend11 = data.filter(function(row) {
+            return row["scenario"]=="os-odl_l2-moon-ha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend11.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg11",trend11)
+        // ****************************************// for scenario os-nosdn-nofeature-ha
+       // Filter results
+        var trend12 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-ha" && row["installer"]=="compass";
+       })
+       // Parse the date
+        trend12.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg12",trend12)
+        // ****************************************
+    });
+    if ( !window.isLoaded ) {
+        window.addEventListener("load", function() {
+                       onDocumentReady();
+        }, false);
+    } else {
+       onDocumentReady();
+    }
+</script>
+<script type="text/javascript">
+$(document).ready(function (){
+    $(".btn-more").click(function() {
+       $(this).hide();
+       $(this).parent().find(".panel-default").show();
+    });
+})
+</script>
+
+  </head>
+    <body>
+    <div class="container">
+      <div class="masthead">
+        <h3 class="text-muted">Functest status page (euphrates, 2017-10-20 08:41)</h3>
+        <nav>
+          <ul class="nav nav-justified">
+            <li class="active"><a href="http://testresults.opnfv.org/reporting/index.html">Home</a></li>
+            <li><a href="./apex.html">Apex</a></li>
+            <li><a href="./compass.html">Compass</a></li>
+            <li><a href="./daisy.html">Daisy</a></li>
+            <li><a href="./fuel@x86.html">Fuel@x86</a></li>
+            <li><a href="./fuel@aarch64.html">Fuel@aarch64</a></li>
+            <li><a href="./joid.html">Joid</a></li>
+          </ul>
+        </nav>
+      </div>
+<div class="row">
+    <div class="col-md-1"></div>
+    <div class="col-md-10">
+        <div class="page-header">
+            <h2>compass</h2>
+        </div>
+
+        <div class="scenario-overview">
+            <div class="panel-heading"><h4><b>List of last scenarios (euphrates) run over the last 10 days </b></h4></div>
+                <table class="table">
+                    <tr>
+                        <th width="40%">HA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/81/console>os-odl_l3-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario4"></div></td>
+                                <td><div id="trend_svg4"></div></td>
+                                <td>21/27</td>
+                                <td>6</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/84/console>os-nosdn-kvm-ha</a></td>
+                                <td><div id="gaugeScenario5"></div></td>
+                                <td><div id="trend_svg5"></div></td>
+                                <td>26/27</td>
+                                <td>9</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/87/console>os-odl-sfc-ha</a></td>
+                                <td><div id="gaugeScenario6"></div></td>
+                                <td><div id="trend_svg6"></div></td>
+                                <td>26/30</td>
+                                <td>9</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/72/console>os-nosdn-ovs_dpdk-ha</a></td>
+                                <td><div id="gaugeScenario8"></div></td>
+                                <td><div id="trend_svg8"></div></td>
+                                <td>2/18</td>
+                                <td>3</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-baremetal-daily-euphrates/24/console>os-odl_l2-moon-ha</a></td>
+                                <td><div id="gaugeScenario11"></div></td>
+                                <td><div id="trend_svg11"></div></td>
+                                <td>26/30</td>
+                                <td>8</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/78/console>os-nosdn-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario12"></div></td>
+                                <td><div id="trend_svg12"></div></td>
+                                <td>24/27</td>
+                                <td>9</td>
+                            </tr>
+                            <br>
+                </table>
+                <br>
+               <table class="table">
+                    <tr>
+                        <th width="40%">NOHA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/83/console>os-nosdn-kvm-noha</a></td>
+                                <td><div id="gaugeScenario1"></div></td>
+                                <td><div id="trend_svg1"></div></td>
+                                <td>26/27</td>
+                                <td>7</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/77/console>os-odl-sfc-noha</a></td>
+                                <td><div id="gaugeScenario2"></div></td>
+                                <td><div id="trend_svg2"></div></td>
+                                <td>20/30</td>
+                                <td>4</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/79/console>os-odl_l2-moon-noha</a></td>
+                                <td><div id="gaugeScenario3"></div></td>
+                                <td><div id="trend_svg3"></div></td>
+                                <td>24/30</td>
+                                <td>4</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/86/console>os-nosdn-nofeature-noha</a></td>
+                                <td><div id="gaugeScenario7"></div></td>
+                                <td><div id="trend_svg7"></div></td>
+                                <td>26/27</td>
+                                <td>6</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/82/console>os-nosdn-ovs_dpdk-noha</a></td>
+                                <td><div id="gaugeScenario9"></div></td>
+                                <td><div id="trend_svg9"></div></td>
+                                <td>3/27</td>
+                                <td>6</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-compass-virtual-daily-euphrates/55/console>os-odl_l3-nofeature-noha</a></td>
+                                <td><div id="gaugeScenario10"></div></td>
+                                <td><div id="trend_svg10"></div></td>
+                                <td>14/18</td>
+                                <td>3</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr>
+                </table>
+
+        </div>
+
+
+        <div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-kvm-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-sfc-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            SFC
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-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-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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl_l2-moon-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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><td><img src="../../img/weather-overcast.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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl_l3-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-overcast.png"></td><td><img src="../../img/weather-few-clouds.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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-kvm-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-sfc-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            SFC
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-overcast.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-storm.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-ovs_dpdk-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-ovs_dpdk-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl_l3-nofeature-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-overcast.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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl_l2-moon-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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><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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th><th>
+                            vIMS (Cloudify)
+                            *
+                             </th><th>
+                            OpenIMS (OpenBaton)
+                            *
+                             </th><th>
+                            vIMS (OpenBaton)
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-overcast.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><td><img src="../../img/weather-storm.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div>
+    see <a href="https://wiki.opnfv.org/pages/viewpage.action?pageId=6828617">Functest scoring wiki page</a> for details on scenario scoring
+     <div> <br>
+    <a href="./status-compass.pdf" class="myButtonPdf">Export to PDF</a>   <a href="./scenario_history_compass.txt" class="myButtonCSV">Export to CSV</a>
+    </div>
+    </div>
+    <div class="col-md-1"></div>
+</div>
diff --git a/docs/results/euphrates/5.0/daisy.html b/docs/results/euphrates/5.0/daisy.html
new file mode 100644 (file)
index 0000000..6de8d08
--- /dev/null
@@ -0,0 +1,254 @@
+ <html>
+  <head>
+    <meta charset="utf-8">
+    <!-- Bootstrap core CSS -->
+    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
+    <link href="../../js/default.css" rel="stylesheet">
+    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
+    <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
+    <script type="text/javascript" src="http://d3js.org/d3.v2.min.js"></script>
+    <script type="text/javascript" src="../../js/gauge.js"></script>
+    <script type="text/javascript" src="../../js/trend.js"></script>
+    <script>
+    function onDocumentReady() {
+       // Gauge management
+        var gaugeScenario1 = gauge('#gaugeScenario1');var gaugeScenario2 = gauge('#gaugeScenario2');
+
+       // assign success rate to the gauge
+       function updateReadings() {
+           gaugeScenario1.update(96.2962962963);gaugeScenario2.update(83.3333333333);
+       }
+       updateReadings();
+        }
+
+        // trend line management
+        d3.csv("./scenario_history.txt", function(data) {
+       // ***************************************
+       // Create the trend line
+      // for scenario os-nosdn-nofeature-ha
+       // Filter results
+        var trend1 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-ha" && row["installer"]=="daisy";
+       })
+       // Parse the date
+        trend1.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg1",trend1)
+        // ****************************************// for scenario os-odl-nofeature-ha
+       // Filter results
+        var trend2 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-nofeature-ha" && row["installer"]=="daisy";
+       })
+       // Parse the date
+        trend2.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg2",trend2)
+        // ****************************************
+    });
+    if ( !window.isLoaded ) {
+        window.addEventListener("load", function() {
+                       onDocumentReady();
+        }, false);
+    } else {
+       onDocumentReady();
+    }
+</script>
+<script type="text/javascript">
+$(document).ready(function (){
+    $(".btn-more").click(function() {
+       $(this).hide();
+       $(this).parent().find(".panel-default").show();
+    });
+})
+</script>
+
+  </head>
+    <body>
+    <div class="container">
+      <div class="masthead">
+        <h3 class="text-muted">Functest status page (euphrates, 2017-10-20 08:41)</h3>
+        <nav>
+          <ul class="nav nav-justified">
+            <li class="active"><a href="http://testresults.opnfv.org/reporting/index.html">Home</a></li>
+            <li><a href="./apex.html">Apex</a></li>
+            <li><a href="./compass.html">Compass</a></li>
+            <li><a href="./daisy.html">Daisy</a></li>
+            <li><a href="./fuel@x86.html">Fuel@x86</a></li>
+            <li><a href="./fuel@aarch64.html">Fuel@aarch64</a></li>
+            <li><a href="./joid.html">Joid</a></li>
+          </ul>
+        </nav>
+      </div>
+<div class="row">
+    <div class="col-md-1"></div>
+    <div class="col-md-10">
+        <div class="page-header">
+            <h2>daisy</h2>
+        </div>
+
+        <div class="scenario-overview">
+            <div class="panel-heading"><h4><b>List of last scenarios (euphrates) run over the last 10 days </b></h4></div>
+                <table class="table">
+                    <tr>
+                        <th width="40%">HA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-daisy-baremetal-daily-euphrates/46/console>os-nosdn-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario1"></div></td>
+                                <td><div id="trend_svg1"></div></td>
+                                <td>26/27</td>
+                                <td>11</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-daisy-virtual-daily-euphrates/23/console>os-odl-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario2"></div></td>
+                                <td><div id="trend_svg2"></div></td>
+                                <td>25/30</td>
+                                <td>13</td>
+                            </tr>
+                            <br>
+                </table>
+                <br>
+               <table class="table">
+                    <tr>
+                        <th width="40%">NOHA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr>
+                </table>
+
+        </div>
+
+
+        <div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th><th>
+                            vIMS (Cloudify)
+                            *
+                             </th><th>
+                            OpenIMS (OpenBaton)
+                            *
+                             </th><th>
+                            vIMS (OpenBaton)
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.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>
+                        </tr>
+                    </table>
+                </div>
+        </div>
+    see <a href="https://wiki.opnfv.org/pages/viewpage.action?pageId=6828617">Functest scoring wiki page</a> for details on scenario scoring
+     <div> <br>
+    <a href="./status-daisy.pdf" class="myButtonPdf">Export to PDF</a>   <a href="./scenario_history_daisy.txt" class="myButtonCSV">Export to CSV</a>
+    </div>
+    </div>
+    <div class="col-md-1"></div>
+</div>
diff --git a/docs/results/euphrates/5.0/fuel@aarch64.html b/docs/results/euphrates/5.0/fuel@aarch64.html
new file mode 100644 (file)
index 0000000..c8a2f2d
--- /dev/null
@@ -0,0 +1,334 @@
+ <html>
+  <head>
+    <meta charset="utf-8">
+    <!-- Bootstrap core CSS -->
+    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
+    <link href="../../js/default.css" rel="stylesheet">
+    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
+    <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
+    <script type="text/javascript" src="http://d3js.org/d3.v2.min.js"></script>
+    <script type="text/javascript" src="../../js/gauge.js"></script>
+    <script type="text/javascript" src="../../js/trend.js"></script>
+    <script>
+    function onDocumentReady() {
+       // Gauge management
+        var gaugeScenario1 = gauge('#gaugeScenario1');var gaugeScenario2 = gauge('#gaugeScenario2');var gaugeScenario3 = gauge('#gaugeScenario3');
+
+       // assign success rate to the gauge
+       function updateReadings() {
+           gaugeScenario1.update(11.1111111111);gaugeScenario2.update(85.1851851852);gaugeScenario3.update(85.0);
+       }
+       updateReadings();
+        }
+
+        // trend line management
+        d3.csv("./scenario_history.txt", function(data) {
+       // ***************************************
+       // Create the trend line
+      // for scenario os-nosdn-nofeature-noha
+       // Filter results
+        var trend1 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-noha" && row["installer"]=="fuel@aarch64";
+       })
+       // Parse the date
+        trend1.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg1",trend1)
+        // ****************************************// for scenario os-nosdn-nofeature-ha
+       // Filter results
+        var trend2 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-ha" && row["installer"]=="fuel@aarch64";
+       })
+       // Parse the date
+        trend2.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg2",trend2)
+        // ****************************************// for scenario os-odl-nofeature-ha
+       // Filter results
+        var trend3 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-nofeature-ha" && row["installer"]=="fuel@aarch64";
+       })
+       // Parse the date
+        trend3.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg3",trend3)
+        // ****************************************
+    });
+    if ( !window.isLoaded ) {
+        window.addEventListener("load", function() {
+                       onDocumentReady();
+        }, false);
+    } else {
+       onDocumentReady();
+    }
+</script>
+<script type="text/javascript">
+$(document).ready(function (){
+    $(".btn-more").click(function() {
+       $(this).hide();
+       $(this).parent().find(".panel-default").show();
+    });
+})
+</script>
+
+  </head>
+    <body>
+    <div class="container">
+      <div class="masthead">
+        <h3 class="text-muted">Functest status page (euphrates, 2017-10-20 08:41)</h3>
+        <nav>
+          <ul class="nav nav-justified">
+            <li class="active"><a href="http://testresults.opnfv.org/reporting/index.html">Home</a></li>
+            <li><a href="./apex.html">Apex</a></li>
+            <li><a href="./compass.html">Compass</a></li>
+            <li><a href="./daisy.html">Daisy</a></li>
+            <li><a href="./fuel@x86.html">Fuel@x86</a></li>
+            <li><a href="./fuel@aarch64.html">Fuel@aarch64</a></li>
+            <li><a href="./joid.html">Joid</a></li>
+          </ul>
+        </nav>
+      </div>
+<div class="row">
+    <div class="col-md-1"></div>
+    <div class="col-md-10">
+        <div class="page-header">
+            <h2>fuel@aarch64</h2>
+        </div>
+
+        <div class="scenario-overview">
+            <div class="panel-heading"><h4><b>List of last scenarios (euphrates) run over the last 10 days </b></h4></div>
+                <table class="table">
+                    <tr>
+                        <th width="40%">HA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-fuel-armband-baremetal-arm-daily-euphrates/31/console>os-nosdn-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario2"></div></td>
+                                <td><div id="trend_svg2"></div></td>
+                                <td>23/27</td>
+                                <td>4</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-fuel-armband-baremetal-arm-daily-euphrates/30/console>os-odl-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario3"></div></td>
+                                <td><div id="trend_svg3"></div></td>
+                                <td>23/27</td>
+                                <td>3</td>
+                            </tr>
+                            <br>
+                </table>
+                <br>
+               <table class="table">
+                    <tr>
+                        <th width="40%">NOHA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-fuel-armband-virtual-arm-daily-euphrates/1/console>os-nosdn-nofeature-noha</a></td>
+                                <td><div id="gaugeScenario1"></div></td>
+                                <td><div id="trend_svg1"></div></td>
+                                <td>1/9</td>
+                                <td>1</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr>
+                </table>
+
+        </div>
+
+
+        <div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th><th>
+                            vIMS (Cloudify)
+                            *
+                             </th><th>
+                            OpenIMS (OpenBaton)
+                            *
+                             </th><th>
+                            vIMS (OpenBaton)
+                            *
+                             </th><th>
+                            vyos (Cloudify)
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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><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-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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-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-overcast.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div>
+    see <a href="https://wiki.opnfv.org/pages/viewpage.action?pageId=6828617">Functest scoring wiki page</a> for details on scenario scoring
+     <div> <br>
+    <a href="./status-fuel@aarch64.pdf" class="myButtonPdf">Export to PDF</a>   <a href="./scenario_history_fuel@aarch64.txt" class="myButtonCSV">Export to CSV</a>
+    </div>
+    </div>
+    <div class="col-md-1"></div>
+</div>
diff --git a/docs/results/euphrates/5.0/fuel@x86.html b/docs/results/euphrates/5.0/fuel@x86.html
new file mode 100644 (file)
index 0000000..3b918dd
--- /dev/null
@@ -0,0 +1,550 @@
+ <html>
+  <head>
+    <meta charset="utf-8">
+    <!-- Bootstrap core CSS -->
+    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
+    <link href="../../js/default.css" rel="stylesheet">
+    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
+    <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
+    <script type="text/javascript" src="http://d3js.org/d3.v2.min.js"></script>
+    <script type="text/javascript" src="../../js/gauge.js"></script>
+    <script type="text/javascript" src="../../js/trend.js"></script>
+    <script>
+    function onDocumentReady() {
+       // Gauge management
+        var gaugeScenario1 = gauge('#gaugeScenario1');var gaugeScenario2 = gauge('#gaugeScenario2');var gaugeScenario3 = gauge('#gaugeScenario3');var gaugeScenario4 = gauge('#gaugeScenario4');var gaugeScenario5 = gauge('#gaugeScenario5');var gaugeScenario6 = gauge('#gaugeScenario6');
+
+       // assign success rate to the gauge
+       function updateReadings() {
+           gaugeScenario1.update(92.5925925926);gaugeScenario2.update(96.6666666667);gaugeScenario3.update(100.0);gaugeScenario4.update(100.0);gaugeScenario5.update(44.4444444444);gaugeScenario6.update(83.3333333333);
+       }
+       updateReadings();
+        }
+
+        // trend line management
+        d3.csv("./scenario_history.txt", function(data) {
+       // ***************************************
+       // Create the trend line
+      // for scenario os-nosdn-ovs-noha
+       // Filter results
+        var trend1 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-ovs-noha" && row["installer"]=="fuel@x86";
+       })
+       // Parse the date
+        trend1.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg1",trend1)
+        // ****************************************// for scenario os-odl-nofeature-ha
+       // Filter results
+        var trend2 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-nofeature-ha" && row["installer"]=="fuel@x86";
+       })
+       // Parse the date
+        trend2.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg2",trend2)
+        // ****************************************// for scenario os-odl-nofeature-noha
+       // Filter results
+        var trend3 = data.filter(function(row) {
+            return row["scenario"]=="os-odl-nofeature-noha" && row["installer"]=="fuel@x86";
+       })
+       // Parse the date
+        trend3.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg3",trend3)
+        // ****************************************// for scenario os-nosdn-nofeature-noha
+       // Filter results
+        var trend4 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-noha" && row["installer"]=="fuel@x86";
+       })
+       // Parse the date
+        trend4.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg4",trend4)
+        // ****************************************// for scenario os-nosdn-ovs-ha
+       // Filter results
+        var trend5 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-ovs-ha" && row["installer"]=="fuel@x86";
+       })
+       // Parse the date
+        trend5.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg5",trend5)
+        // ****************************************// for scenario os-nosdn-nofeature-ha
+       // Filter results
+        var trend6 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-ha" && row["installer"]=="fuel@x86";
+       })
+       // Parse the date
+        trend6.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg6",trend6)
+        // ****************************************
+    });
+    if ( !window.isLoaded ) {
+        window.addEventListener("load", function() {
+                       onDocumentReady();
+        }, false);
+    } else {
+       onDocumentReady();
+    }
+</script>
+<script type="text/javascript">
+$(document).ready(function (){
+    $(".btn-more").click(function() {
+       $(this).hide();
+       $(this).parent().find(".panel-default").show();
+    });
+})
+</script>
+
+  </head>
+    <body>
+    <div class="container">
+      <div class="masthead">
+        <h3 class="text-muted">Functest status page (euphrates, 2017-10-20 08:41)</h3>
+        <nav>
+          <ul class="nav nav-justified">
+            <li class="active"><a href="http://testresults.opnfv.org/reporting/index.html">Home</a></li>
+            <li><a href="./apex.html">Apex</a></li>
+            <li><a href="./compass.html">Compass</a></li>
+            <li><a href="./daisy.html">Daisy</a></li>
+            <li><a href="./fuel@x86.html">Fuel@x86</a></li>
+            <li><a href="./fuel@aarch64.html">Fuel@aarch64</a></li>
+            <li><a href="./joid.html">Joid</a></li>
+          </ul>
+        </nav>
+      </div>
+<div class="row">
+    <div class="col-md-1"></div>
+    <div class="col-md-10">
+        <div class="page-header">
+            <h2>fuel@x86</h2>
+        </div>
+
+        <div class="scenario-overview">
+            <div class="panel-heading"><h4><b>List of last scenarios (euphrates) run over the last 10 days </b></h4></div>
+                <table class="table">
+                    <tr>
+                        <th width="40%">HA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-fuel-baremetal-daily-euphrates/40/console>os-odl-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario2"></div></td>
+                                <td><div id="trend_svg2"></div></td>
+                                <td>29/30</td>
+                                <td>6</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-fuel-baremetal-daily-euphrates/38/console>os-nosdn-ovs-ha</a></td>
+                                <td><div id="gaugeScenario5"></div></td>
+                                <td><div id="trend_svg5"></div></td>
+                                <td>12/27</td>
+                                <td>6</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-fuel-baremetal-daily-euphrates/37/console>os-nosdn-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario6"></div></td>
+                                <td><div id="trend_svg6"></div></td>
+                                <td>15/18</td>
+                                <td>2</td>
+                            </tr>
+                            <br>
+                </table>
+                <br>
+               <table class="table">
+                    <tr>
+                        <th width="40%">NOHA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-fuel-virtual-daily-euphrates/90/console>os-nosdn-ovs-noha</a></td>
+                                <td><div id="gaugeScenario1"></div></td>
+                                <td><div id="trend_svg1"></div></td>
+                                <td>25/27</td>
+                                <td>10</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-fuel-virtual-daily-euphrates/91/console>os-odl-nofeature-noha</a></td>
+                                <td><div id="gaugeScenario3"></div></td>
+                                <td><div id="trend_svg3"></div></td>
+                                <td>30/30</td>
+                                <td>10</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-fuel-virtual-daily-euphrates/89/console>os-nosdn-nofeature-noha</a></td>
+                                <td><div id="gaugeScenario4"></div></td>
+                                <td><div id="trend_svg4"></div></td>
+                                <td>27/27</td>
+                                <td>9</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr>
+                </table>
+
+        </div>
+
+
+        <div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-ovs-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-overcast.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-clear.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-odl-nofeature-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            ODL
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-overcast.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-ovs-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th><th>
+                            vIMS (Cloudify)
+                            *
+                             </th><th>
+                            OpenIMS (OpenBaton)
+                            *
+                             </th><th>
+                            vIMS (OpenBaton)
+                            *
+                             </th><th>
+                            vyos (Cloudify)
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-overcast.png"></td><td><img src="../../img/weather-overcast.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>
+                        </tr>
+                    </table>
+                </div>
+        </div>
+    see <a href="https://wiki.opnfv.org/pages/viewpage.action?pageId=6828617">Functest scoring wiki page</a> for details on scenario scoring
+     <div> <br>
+    <a href="./status-fuel@x86.pdf" class="myButtonPdf">Export to PDF</a>   <a href="./scenario_history_fuel@x86.txt" class="myButtonCSV">Export to CSV</a>
+    </div>
+    </div>
+    <div class="col-md-1"></div>
+</div>
diff --git a/docs/results/euphrates/5.0/joid.html b/docs/results/euphrates/5.0/joid.html
new file mode 100644 (file)
index 0000000..d58efcc
--- /dev/null
@@ -0,0 +1,576 @@
+ <html>
+  <head>
+    <meta charset="utf-8">
+    <!-- Bootstrap core CSS -->
+    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">
+    <link href="../../js/default.css" rel="stylesheet">
+    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
+    <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
+    <script type="text/javascript" src="http://d3js.org/d3.v2.min.js"></script>
+    <script type="text/javascript" src="../../js/gauge.js"></script>
+    <script type="text/javascript" src="../../js/trend.js"></script>
+    <script>
+    function onDocumentReady() {
+       // Gauge management
+        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');
+
+       // assign success rate to the gauge
+       function updateReadings() {
+           gaugeScenario1.update(11.1111111111);gaugeScenario2.update(11.1111111111);gaugeScenario3.update(55.5555555556);gaugeScenario4.update(27.7777777778);gaugeScenario5.update(13.3333333333);gaugeScenario6.update(20.0);gaugeScenario7.update(55.5555555556);
+       }
+       updateReadings();
+        }
+
+        // trend line management
+        d3.csv("./scenario_history.txt", function(data) {
+       // ***************************************
+       // Create the trend line
+      // for scenario os-ocl-nofeature-noha
+       // Filter results
+        var trend1 = data.filter(function(row) {
+            return row["scenario"]=="os-ocl-nofeature-noha" && row["installer"]=="joid";
+       })
+       // Parse the date
+        trend1.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg1",trend1)
+        // ****************************************// for scenario os-ocl-nofeature-ha
+       // Filter results
+        var trend2 = data.filter(function(row) {
+            return row["scenario"]=="os-ocl-nofeature-ha" && row["installer"]=="joid";
+       })
+       // Parse the date
+        trend2.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg2",trend2)
+        // ****************************************// for scenario os-nosdn-nofeature-noha
+       // Filter results
+        var trend3 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-noha" && row["installer"]=="joid";
+       })
+       // Parse the date
+        trend3.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg3",trend3)
+        // ****************************************// for scenario os-nosdn-openbaton-ha
+       // Filter results
+        var trend4 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-openbaton-ha" && row["installer"]=="joid";
+       })
+       // Parse the date
+        trend4.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg4",trend4)
+        // ****************************************// for scenario os-nosdn-lxd-ha
+       // Filter results
+        var trend5 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-lxd-ha" && row["installer"]=="joid";
+       })
+       // Parse the date
+        trend5.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg5",trend5)
+        // ****************************************// for scenario os-nosdn-lxd-noha
+       // Filter results
+        var trend6 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-lxd-noha" && row["installer"]=="joid";
+       })
+       // Parse the date
+        trend6.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg6",trend6)
+        // ****************************************// for scenario os-nosdn-nofeature-ha
+       // Filter results
+        var trend7 = data.filter(function(row) {
+            return row["scenario"]=="os-nosdn-nofeature-ha" && row["installer"]=="joid";
+       })
+       // Parse the date
+        trend7.forEach(function(d) {
+           d.date = parseDate(d.date);
+           d.score = +d.score
+        });
+        // Draw the trend line
+        var mytrend = trend("#trend_svg7",trend7)
+        // ****************************************
+    });
+    if ( !window.isLoaded ) {
+        window.addEventListener("load", function() {
+                       onDocumentReady();
+        }, false);
+    } else {
+       onDocumentReady();
+    }
+</script>
+<script type="text/javascript">
+$(document).ready(function (){
+    $(".btn-more").click(function() {
+       $(this).hide();
+       $(this).parent().find(".panel-default").show();
+    });
+})
+</script>
+
+  </head>
+    <body>
+    <div class="container">
+      <div class="masthead">
+        <h3 class="text-muted">Functest status page (euphrates, 2017-10-20 08:41)</h3>
+        <nav>
+          <ul class="nav nav-justified">
+            <li class="active"><a href="http://testresults.opnfv.org/reporting/index.html">Home</a></li>
+            <li><a href="./apex.html">Apex</a></li>
+            <li><a href="./compass.html">Compass</a></li>
+            <li><a href="./daisy.html">Daisy</a></li>
+            <li><a href="./fuel@x86.html">Fuel@x86</a></li>
+            <li><a href="./fuel@aarch64.html">Fuel@aarch64</a></li>
+            <li><a href="./joid.html">Joid</a></li>
+          </ul>
+        </nav>
+      </div>
+<div class="row">
+    <div class="col-md-1"></div>
+    <div class="col-md-10">
+        <div class="page-header">
+            <h2>joid</h2>
+        </div>
+
+        <div class="scenario-overview">
+            <div class="panel-heading"><h4><b>List of last scenarios (euphrates) run over the last 10 days </b></h4></div>
+                <table class="table">
+                    <tr>
+                        <th width="40%">HA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-euphrates/84/console>os-ocl-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario2"></div></td>
+                                <td><div id="trend_svg2"></div></td>
+                                <td>3/27</td>
+                                <td>10</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-euphrates/67/console>os-nosdn-openbaton-ha</a></td>
+                                <td><div id="gaugeScenario4"></div></td>
+                                <td><div id="trend_svg4"></div></td>
+                                <td>5/18</td>
+                                <td>2</td>
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-euphrates/56/console>os-nosdn-lxd-ha</a></td>
+                                <td><div id="gaugeScenario5"></div></td>
+                                <td><div id="trend_svg5"></div></td>
+                                <td>2/15</td>
+                                <td>4</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-euphrates/81/console>os-nosdn-nofeature-ha</a></td>
+                                <td><div id="gaugeScenario7"></div></td>
+                                <td><div id="trend_svg7"></div></td>
+                                <td>10/18</td>
+                                <td>3</td>
+                            </tr>
+                            <br>
+                </table>
+                <br>
+               <table class="table">
+                    <tr>
+                        <th width="40%">NOHA Scenario</th>
+                        <th width="20%">Status</th>
+                        <th width="20%">Trend</th>
+                        <th width="10%">Score</th>
+                        <th width="10%">Iteration</th>
+                    </tr>
+                        <tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-euphrates/85/console>os-ocl-nofeature-noha</a></td>
+                                <td><div id="gaugeScenario1"></div></td>
+                                <td><div id="trend_svg1"></div></td>
+                                <td>3/27</td>
+                                <td>9</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-euphrates/90/console>os-nosdn-nofeature-noha</a></td>
+                                <td><div id="gaugeScenario3"></div></td>
+                                <td><div id="trend_svg3"></div></td>
+                                <td>15/27</td>
+                                <td>9</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            
+                            </tr><tr class="tr-ok">
+                            <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-euphrates/88/console>os-nosdn-lxd-noha</a></td>
+                                <td><div id="gaugeScenario6"></div></td>
+                                <td><div id="trend_svg6"></div></td>
+                                <td>3/15</td>
+                                <td>9</td>
+                            </tr><tr class="tr-ok">
+                            
+                            </tr>
+                </table>
+
+        </div>
+
+
+        <div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-ocl-nofeature-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-ocl-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-openbaton-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-overcast.png"></td><td><img src="../../img/weather-overcast.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-lxd-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-lxd-noha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <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-few-clouds.png"></td><td><img src="../../img/weather-clear.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div><div class="scenario-part">
+            <div class="page-header">
+                <h3><span class="glyphicon glyphicon-chevron-right"> <b>os-nosdn-nofeature-ha</b></h3>
+            </div>
+                    <div class="panel panel-default">
+                    <div class="panel-heading">
+                        <span class="panel-header-item">
+                        </span>
+                    </div>
+                    <table class="table">
+                        <tr>
+                            <th>
+                            Health (connection)
+                            
+                             </th><th>
+                            Health (api)
+                            
+                             </th><th>
+                            Health (dhcp)
+                            
+                             </th><th>
+                            vPing (ssh)
+                            
+                             </th><th>
+                            vPing (userdata)
+                            
+                             </th><th>
+                            Tempest (smoke)
+                            
+                             </th><th>
+                            Rally (smoke)
+                            
+                             </th><th>
+                            Refstack
+                            
+                             </th><th>
+                            SNAPS
+                            
+                             </th><th>
+                            Promise
+                            *
+                             </th><th>
+                            Domino
+                            *
+                             </th><th>
+                            vIMS (Cloudify)
+                            *
+                             </th><th>
+                            OpenIMS (OpenBaton)
+                            *
+                             </th><th>
+                            vIMS (OpenBaton)
+                            *
+                             </th>
+                        </tr>
+                        <tr class="tr-weather-weather">
+                            <td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-few-clouds.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-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-storm.png"></td><td><img src="../../img/weather-storm.png"></td><td><img src="../../img/weather-storm.png"></td>
+                        </tr>
+                    </table>
+                </div>
+        </div>
+    see <a href="https://wiki.opnfv.org/pages/viewpage.action?pageId=6828617">Functest scoring wiki page</a> for details on scenario scoring
+     <div> <br>
+    <a href="./status-joid.pdf" class="myButtonPdf">Export to PDF</a>   <a href="./scenario_history_joid.txt" class="myButtonCSV">Export to CSV</a>
+    </div>
+    </div>
+    <div class="col-md-1"></div>
+</div>
diff --git a/docs/results/euphrates/5.0/scenario_history.txt b/docs/results/euphrates/5.0/scenario_history.txt
new file mode 100644 (file)
index 0000000..be2f2e8
--- /dev/null
@@ -0,0 +1,783 @@
+date,scenario,installer,detail,score
+2017-09-25 07:27,os-odl-nofeature-ha,apex,5/30,17.0
+2017-09-25 07:27,os-ovn-nofeature-noha,apex,5/27,19.0
+2017-09-25 07:27,os-odl-bgpvpn-ha,apex,5/27,19.0
+2017-09-25 07:27,os-odl-nofeature-noha,apex,6/30,20.0
+2017-09-25 07:27,os-nosdn-nofeature-noha,apex,8/27,30.0
+2017-09-25 07:27,os-nosdn-nofeature-ha,apex,8/27,30.0
+2017-09-25 07:27,os-odl-nofeature-noha,fuel@x86,14/30,47.0
+2017-09-25 07:27,os-nosdn-nofeature-noha,fuel@x86,12/27,44.0
+2017-09-25 07:27,os-nosdn-ovs-noha,fuel@x86,14/27,52.0
+2017-09-26 13:13,os-nosdn-fdio-noha,apex,3/27,11.0
+2017-09-26 13:13,os-odl-sfc-noha,apex,4/30,13.0
+2017-09-26 13:13,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-09-26 13:13,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-09-26 13:13,os-ovn-nofeature-noha,apex,5/27,19.0
+2017-09-26 13:13,os-odl-bgpvpn-ha,apex,5/27,19.0
+2017-09-26 13:13,os-odl-nofeature-noha,apex,6/30,20.0
+2017-09-26 13:13,os-nosdn-nofeature-noha,apex,8/27,30.0
+2017-09-26 13:13,os-odl-nofeature-ha,apex,5/30,17.0
+2017-09-26 13:13,os-nosdn-nofeature-ha,apex,8/27,30.0
+2017-09-26 13:13,os-nosdn-nofeature-ha,daisy,9/27,33.0
+2017-09-26 13:13,os-odl-nofeature-noha,fuel@x86,14/30,47.0
+2017-09-26 13:13,os-nosdn-nofeature-noha,fuel@x86,12/27,44.0
+2017-09-26 13:13,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-09-28 06:03,os-nosdn-fdio-noha,apex,3/27,11.0
+2017-09-28 06:03,os-odl-sfc-noha,apex,4/30,13.0
+2017-09-28 06:03,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-09-28 06:03,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-09-28 06:03,os-ovn-nofeature-noha,apex,5/27,19.0
+2017-09-28 06:03,os-odl-bgpvpn-ha,apex,5/27,19.0
+2017-09-28 06:03,os-odl-nofeature-noha,apex,6/30,20.0
+2017-09-28 06:03,os-nosdn-nofeature-noha,apex,16/27,59.0
+2017-09-28 06:03,os-odl-nofeature-ha,apex,10/30,33.0
+2017-09-28 06:03,os-nosdn-nofeature-ha,apex,16/27,59.0
+2017-09-28 06:03,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-09-28 06:03,os-odl-nofeature-ha,daisy,25/30,83.0
+2017-09-28 06:03,os-odl-nofeature-noha,fuel@x86,20/30,67.0
+2017-09-28 06:03,os-nosdn-nofeature-noha,fuel@x86,12/27,44.0
+2017-09-28 06:03,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-09-28 06:03,os-odl-nofeature-ha,fuel@x86,8/30,27.0
+2017-09-28 06:03,os-ocl-nofeature-ha,joid,1/27,4.0
+2017-09-28 06:03,os-nosdn-lxd-noha,joid,1/15,7.0
+2017-09-28 06:03,os-ocl-nofeature-noha,joid,1/27,4.0
+2017-09-28 06:03,os-nosdn-nofeature-ha,joid,5/27,19.0
+2017-09-28 06:03,os-nosdn-nofeature-noha,joid,4/27,15.0
+2017-09-29 06:33,os-nosdn-fdio-noha,apex,3/27,11.0
+2017-09-29 06:33,os-odl-sfc-noha,apex,4/30,13.0
+2017-09-29 06:33,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-09-29 06:33,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-09-29 06:33,os-ovn-nofeature-noha,apex,10/27,37.0
+2017-09-29 06:33,os-nosdn-fdio-ha,apex,5/27,19.0
+2017-09-29 06:33,os-odl-bgpvpn-ha,apex,5/27,19.0
+2017-09-29 06:33,os-odl-nofeature-noha,apex,14/30,47.0
+2017-09-29 06:33,os-nosdn-nofeature-noha,apex,16/27,59.0
+2017-09-29 06:33,os-odl-fdio-noha,apex,2/33,6.0
+2017-09-29 06:33,os-odl-nofeature-ha,apex,10/30,33.0
+2017-09-29 06:33,os-odl-fdio-ha,apex,10/33,30.0
+2017-09-29 06:33,os-nosdn-nofeature-ha,apex,16/27,59.0
+2017-09-29 06:33,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-09-29 06:33,os-odl-nofeature-ha,daisy,26/30,87.0
+2017-09-29 06:33,os-odl-nofeature-noha,fuel@x86,20/30,67.0
+2017-09-29 06:33,os-nosdn-nofeature-noha,fuel@x86,12/27,44.0
+2017-09-29 06:33,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-09-29 06:33,os-odl-nofeature-ha,fuel@x86,8/30,27.0
+2017-09-29 06:33,os-ocl-nofeature-noha,joid,1/27,4.0
+2017-09-29 06:33,os-ocl-nofeature-ha,joid,1/27,4.0
+2017-09-29 06:33,os-nosdn-nofeature-noha,joid,5/27,19.0
+2017-09-29 06:33,os-nosdn-lxd-ha,joid,1/15,7.0
+2017-09-29 06:33,os-nosdn-lxd-noha,joid,1/15,7.0
+2017-09-29 06:33,os-nosdn-nofeature-ha,joid,5/27,19.0
+2017-09-29 09:47,os-nosdn-fdio-noha,apex,3/27,11.0
+2017-09-29 09:47,os-odl-sfc-noha,apex,4/30,13.0
+2017-09-29 09:47,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-09-29 09:47,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-09-29 09:47,os-ovn-nofeature-noha,apex,10/27,37.0
+2017-09-29 09:47,os-nosdn-fdio-ha,apex,5/27,19.0
+2017-09-29 09:47,os-odl-bgpvpn-ha,apex,5/27,19.0
+2017-09-29 09:47,os-odl-nofeature-noha,apex,14/30,47.0
+2017-09-29 09:47,os-nosdn-nofeature-noha,apex,16/27,59.0
+2017-09-29 09:47,os-odl-fdio-noha,apex,2/33,6.0
+2017-09-29 09:47,os-odl-nofeature-ha,apex,10/30,33.0
+2017-09-29 09:47,os-odl-fdio-ha,apex,10/33,30.0
+2017-09-29 09:47,os-nosdn-bar-ha,apex,8/27,30.0
+2017-09-29 09:47,os-nosdn-nofeature-ha,apex,16/27,59.0
+2017-09-29 09:47,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-09-29 09:47,os-odl-nofeature-ha,daisy,26/30,87.0
+2017-09-29 09:47,os-odl-nofeature-noha,fuel@x86,20/30,67.0
+2017-09-29 09:47,os-nosdn-nofeature-noha,fuel@x86,12/27,44.0
+2017-09-29 09:47,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-09-29 09:47,os-odl-nofeature-ha,fuel@x86,8/30,27.0
+2017-09-29 09:47,os-ocl-nofeature-noha,joid,1/27,4.0
+2017-09-29 09:47,os-ocl-nofeature-ha,joid,1/27,4.0
+2017-09-29 09:47,os-nosdn-nofeature-noha,joid,5/27,19.0
+2017-09-29 09:47,os-nosdn-lxd-ha,joid,1/15,7.0
+2017-09-29 09:47,os-nosdn-lxd-noha,joid,1/15,7.0
+2017-09-29 09:47,os-nosdn-nofeature-ha,joid,5/27,19.0
+2017-09-30 10:07,os-nosdn-fdio-noha,apex,3/27,11.0
+2017-09-30 10:07,os-odl-sfc-noha,apex,4/30,13.0
+2017-09-30 10:07,os-nosdn-fdio-ha,apex,5/27,19.0
+2017-09-30 10:07,os-ovn-nofeature-noha,apex,10/27,37.0
+2017-09-30 10:07,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-09-30 10:07,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-09-30 10:07,os-odl-fdio-noha,apex,11/33,33.0
+2017-09-30 10:07,os-odl-bgpvpn-ha,apex,5/27,19.0
+2017-09-30 10:07,os-odl-nofeature-noha,apex,14/30,47.0
+2017-09-30 10:07,os-nosdn-nofeature-noha,apex,16/27,59.0
+2017-09-30 10:07,os-nosdn-ovs_dpdk-ha,apex,2/27,7.0
+2017-09-30 10:07,os-nosdn-ovs_dpdk-noha,apex,2/27,7.0
+2017-09-30 10:07,os-odl-nofeature-ha,apex,10/30,33.0
+2017-09-30 10:07,os-odl-fdio-ha,apex,12/33,36.0
+2017-09-30 10:07,os-nosdn-bar-noha,apex,8/27,30.0
+2017-09-30 10:07,os-nosdn-bar-ha,apex,8/27,30.0
+2017-09-30 10:07,os-nosdn-nofeature-ha,apex,16/27,59.0
+2017-09-30 10:07,os-nosdn-kvm-noha,compass,7/27,26.0
+2017-09-30 10:07,os-odl-sfc-noha,compass,8/30,27.0
+2017-09-30 10:07,os-odl_l3-nofeature-ha,compass,12/27,44.0
+2017-09-30 10:07,os-nosdn-kvm-ha,compass,6/27,22.0
+2017-09-30 10:07,os-odl-sfc-ha,compass,7/30,23.0
+2017-09-30 10:07,os-nosdn-nofeature-noha,compass,6/27,22.0
+2017-09-30 10:07,os-nosdn-ovs_dpdk-noha,compass,1/27,4.0
+2017-09-30 10:07,os-odl_l2-moon-ha,compass,7/30,23.0
+2017-09-30 10:07,os-nosdn-nofeature-ha,daisy,25/27,93.0
+2017-09-30 10:07,os-odl-nofeature-ha,daisy,26/30,87.0
+2017-09-30 10:07,os-odl-nofeature-noha,fuel@x86,21/30,70.0
+2017-09-30 10:07,os-nosdn-nofeature-noha,fuel@x86,13/27,48.0
+2017-09-30 10:07,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-09-30 10:07,os-odl-nofeature-ha,fuel@x86,8/30,27.0
+2017-09-30 10:07,os-odl_l2-nofeature-ha,fuel@aarch64,8/30,27.0
+2017-09-30 10:07,os-ocl-nofeature-noha,joid,2/27,7.0
+2017-09-30 10:07,os-ocl-nofeature-ha,joid,2/27,7.0
+2017-09-30 10:07,os-nosdn-nofeature-noha,joid,5/27,19.0
+2017-09-30 10:07,os-nosdn-lxd-ha,joid,2/15,13.0
+2017-09-30 10:07,os-nosdn-lxd-noha,joid,2/15,13.0
+2017-09-30 10:07,os-nosdn-nofeature-ha,joid,9/27,33.0
+2017-10-01 06:48,os-nosdn-fdio-noha,apex,5/27,19.0
+2017-10-01 06:48,os-odl-sfc-noha,apex,4/30,13.0
+2017-10-01 06:48,os-nosdn-fdio-ha,apex,5/27,19.0
+2017-10-01 06:48,os-ovn-nofeature-noha,apex,10/27,37.0
+2017-10-01 06:48,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-10-01 06:50,os-nosdn-fdio-noha,apex,5/27,19.0
+2017-10-01 06:48,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-10-01 06:50,os-odl-sfc-noha,apex,4/30,13.0
+2017-10-01 06:48,os-odl-fdio-noha,apex,11/33,33.0
+2017-10-01 06:50,os-nosdn-fdio-ha,apex,5/27,19.0
+2017-10-01 06:48,os-odl-bgpvpn-ha,apex,5/27,19.0
+2017-10-01 06:50,os-ovn-nofeature-noha,apex,10/27,37.0
+2017-10-01 06:48,os-odl-nofeature-noha,apex,16/30,53.0
+2017-10-01 06:50,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-10-01 06:52,os-nosdn-fdio-noha,apex,5/27,19.0
+2017-10-01 06:48,os-nosdn-nofeature-noha,apex,16/27,59.0
+2017-10-01 06:50,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-10-01 06:52,os-odl-sfc-noha,apex,4/30,13.0
+2017-10-01 06:48,os-nosdn-ovs_dpdk-ha,apex,2/27,7.0
+2017-10-01 06:50,os-odl-fdio-noha,apex,11/33,33.0
+2017-10-01 06:52,os-nosdn-fdio-ha,apex,5/27,19.0
+2017-10-01 06:48,os-nosdn-ovs_dpdk-noha,apex,2/27,7.0
+2017-10-01 06:50,os-odl-bgpvpn-ha,apex,5/27,19.0
+2017-10-01 06:52,os-ovn-nofeature-noha,apex,10/27,37.0
+2017-10-01 06:48,os-odl-nofeature-ha,apex,13/30,43.0
+2017-10-01 06:50,os-odl-nofeature-noha,apex,16/30,53.0
+2017-10-01 06:52,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-10-01 06:48,os-odl-fdio-ha,apex,12/33,36.0
+2017-10-01 06:50,os-nosdn-nofeature-noha,apex,16/27,59.0
+2017-10-01 06:54,os-nosdn-fdio-noha,apex,5/27,19.0
+2017-10-01 06:52,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-10-01 06:48,os-nosdn-bar-noha,apex,8/27,30.0
+2017-10-01 06:50,os-nosdn-ovs_dpdk-ha,apex,2/27,7.0
+2017-10-01 06:54,os-odl-sfc-noha,apex,4/30,13.0
+2017-10-01 06:52,os-odl-fdio-noha,apex,11/33,33.0
+2017-10-01 06:48,os-nosdn-bar-ha,apex,8/27,30.0
+2017-10-01 06:50,os-nosdn-ovs_dpdk-noha,apex,2/27,7.0
+2017-10-01 06:54,os-nosdn-fdio-ha,apex,5/27,19.0
+2017-10-01 06:52,os-odl-bgpvpn-ha,apex,5/27,19.0
+2017-10-01 06:48,os-nosdn-nofeature-ha,apex,16/27,59.0
+2017-10-01 06:50,os-odl-nofeature-ha,apex,13/30,43.0
+2017-10-01 06:54,os-ovn-nofeature-noha,apex,10/27,37.0
+2017-10-01 06:52,os-odl-nofeature-noha,apex,16/30,53.0
+2017-10-01 06:48,os-nosdn-kvm-noha,compass,7/27,26.0
+2017-10-01 06:50,os-odl-fdio-ha,apex,12/33,36.0
+2017-10-01 06:54,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-10-01 06:52,os-nosdn-nofeature-noha,apex,16/27,59.0
+2017-10-01 06:48,os-odl-sfc-noha,compass,8/30,27.0
+2017-10-01 06:50,os-nosdn-bar-noha,apex,8/27,30.0
+2017-10-01 06:54,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-10-01 06:52,os-nosdn-ovs_dpdk-ha,apex,2/27,7.0
+2017-10-01 06:48,os-odl_l3-nofeature-ha,compass,12/27,44.0
+2017-10-01 06:50,os-nosdn-bar-ha,apex,8/27,30.0
+2017-10-01 06:54,os-odl-fdio-noha,apex,11/33,33.0
+2017-10-01 06:52,os-nosdn-ovs_dpdk-noha,apex,2/27,7.0
+2017-10-01 06:48,os-nosdn-kvm-ha,compass,6/27,22.0
+2017-10-01 06:50,os-nosdn-nofeature-ha,apex,16/27,59.0
+2017-10-01 06:54,os-odl-bgpvpn-ha,apex,5/27,19.0
+2017-10-01 06:52,os-odl-nofeature-ha,apex,13/30,43.0
+2017-10-01 06:48,os-odl-sfc-ha,compass,7/30,23.0
+2017-10-01 06:50,os-nosdn-kvm-noha,compass,7/27,26.0
+2017-10-01 06:54,os-odl-nofeature-noha,apex,16/30,53.0
+2017-10-01 06:52,os-odl-fdio-ha,apex,12/33,36.0
+2017-10-01 06:48,os-nosdn-nofeature-noha,compass,6/27,22.0
+2017-10-01 06:50,os-odl-sfc-noha,compass,8/30,27.0
+2017-10-01 06:54,os-nosdn-nofeature-noha,apex,16/27,59.0
+2017-10-01 06:52,os-nosdn-bar-noha,apex,8/27,30.0
+2017-10-01 06:48,os-nosdn-ovs_dpdk-noha,compass,1/27,4.0
+2017-10-01 06:50,os-odl_l3-nofeature-ha,compass,12/27,44.0
+2017-10-01 06:54,os-nosdn-ovs_dpdk-ha,apex,2/27,7.0
+2017-10-01 06:52,os-nosdn-bar-ha,apex,8/27,30.0
+2017-10-01 06:48,os-odl_l2-moon-ha,compass,7/30,23.0
+2017-10-01 06:50,os-nosdn-kvm-ha,compass,6/27,22.0
+2017-10-01 06:54,os-nosdn-ovs_dpdk-noha,apex,2/27,7.0
+2017-10-01 06:52,os-nosdn-nofeature-ha,apex,16/27,59.0
+2017-10-01 06:48,os-nosdn-nofeature-ha,compass,6/27,22.0
+2017-10-01 06:50,os-odl-sfc-ha,compass,7/30,23.0
+2017-10-01 06:54,os-odl-nofeature-ha,apex,13/30,43.0
+2017-10-01 06:52,os-nosdn-kvm-noha,compass,7/27,26.0
+2017-10-01 06:48,os-nosdn-nofeature-ha,daisy,25/27,93.0
+2017-10-01 06:50,os-nosdn-nofeature-noha,compass,6/27,22.0
+2017-10-01 06:54,os-odl-fdio-ha,apex,12/33,36.0
+2017-10-01 06:52,os-odl-sfc-noha,compass,8/30,27.0
+2017-10-01 06:48,os-odl-nofeature-ha,daisy,27/30,90.0
+2017-10-01 06:50,os-nosdn-ovs_dpdk-noha,compass,1/27,4.0
+2017-10-01 06:54,os-nosdn-bar-noha,apex,8/27,30.0
+2017-10-01 06:52,os-odl_l3-nofeature-ha,compass,12/27,44.0
+2017-10-01 06:48,os-odl-nofeature-noha,fuel@x86,21/30,70.0
+2017-10-01 06:50,os-odl_l2-moon-ha,compass,7/30,23.0
+2017-10-01 06:54,os-nosdn-bar-ha,apex,8/27,30.0
+2017-10-01 06:52,os-nosdn-kvm-ha,compass,6/27,22.0
+2017-10-01 06:48,os-nosdn-nofeature-noha,fuel@x86,13/27,48.0
+2017-10-01 06:50,os-nosdn-nofeature-ha,compass,6/27,22.0
+2017-10-01 06:54,os-nosdn-nofeature-ha,apex,16/27,59.0
+2017-10-01 06:52,os-odl-sfc-ha,compass,7/30,23.0
+2017-10-01 06:48,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-10-01 06:50,os-nosdn-nofeature-ha,daisy,25/27,93.0
+2017-10-01 06:54,os-nosdn-kvm-noha,compass,7/27,26.0
+2017-10-01 06:52,os-nosdn-nofeature-noha,compass,6/27,22.0
+2017-10-01 06:48,os-odl-nofeature-ha,fuel@x86,8/30,27.0
+2017-10-01 06:50,os-odl-nofeature-ha,daisy,27/30,90.0
+2017-10-01 06:54,os-odl-sfc-noha,compass,8/30,27.0
+2017-10-01 06:52,os-nosdn-ovs_dpdk-noha,compass,1/27,4.0
+2017-10-01 06:48,os-odl_l2-nofeature-ha,fuel@aarch64,8/30,27.0
+2017-10-01 06:50,os-odl-nofeature-noha,fuel@x86,21/30,70.0
+2017-10-01 06:54,os-odl_l3-nofeature-ha,compass,12/27,44.0
+2017-10-01 06:52,os-odl_l2-moon-ha,compass,7/30,23.0
+2017-10-01 06:48,os-ocl-nofeature-noha,joid,2/27,7.0
+2017-10-01 06:50,os-nosdn-nofeature-noha,fuel@x86,13/27,48.0
+2017-10-01 06:54,os-nosdn-kvm-ha,compass,6/27,22.0
+2017-10-01 06:52,os-nosdn-nofeature-ha,compass,6/27,22.0
+2017-10-01 06:48,os-ocl-nofeature-ha,joid,2/27,7.0
+2017-10-01 06:50,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-10-01 06:54,os-odl-sfc-ha,compass,7/30,23.0
+2017-10-01 06:52,os-nosdn-nofeature-ha,daisy,25/27,93.0
+2017-10-01 06:48,os-nosdn-nofeature-noha,joid,5/27,19.0
+2017-10-01 06:50,os-odl-nofeature-ha,fuel@x86,8/30,27.0
+2017-10-01 06:54,os-nosdn-nofeature-noha,compass,6/27,22.0
+2017-10-01 06:48,os-nosdn-lxd-ha,joid,2/15,13.0
+2017-10-01 06:52,os-odl-nofeature-ha,daisy,27/30,90.0
+2017-10-01 06:50,os-odl_l2-nofeature-ha,fuel@aarch64,8/30,27.0
+2017-10-01 06:54,os-nosdn-ovs_dpdk-noha,compass,1/27,4.0
+2017-10-01 06:48,os-nosdn-lxd-noha,joid,2/15,13.0
+2017-10-01 06:52,os-odl-nofeature-noha,fuel@x86,21/30,70.0
+2017-10-01 06:50,os-ocl-nofeature-noha,joid,2/27,7.0
+2017-10-01 06:54,os-odl_l2-moon-ha,compass,7/30,23.0
+2017-10-01 06:48,os-nosdn-nofeature-ha,joid,9/27,33.0
+2017-10-01 06:52,os-nosdn-nofeature-noha,fuel@x86,13/27,48.0
+2017-10-01 06:50,os-ocl-nofeature-ha,joid,2/27,7.0
+2017-10-01 06:54,os-nosdn-nofeature-ha,compass,6/27,22.0
+2017-10-01 06:52,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-10-01 06:45,os-nosdn-ovs-ha,fuel@x86,9/18,56
+2017-10-01 06:50,os-nosdn-nofeature-noha,joid,5/27,19.0
+2017-10-01 06:54,os-nosdn-nofeature-ha,daisy,25/27,93.0
+2017-10-01 06:52,os-odl-nofeature-ha,fuel@x86,8/30,27.0
+2017-10-01 06:50,os-nosdn-lxd-ha,joid,2/15,13.0
+2017-10-01 06:54,os-odl-nofeature-ha,daisy,27/30,90.0
+2017-10-01 06:52,os-odl_l2-nofeature-ha,fuel@aarch64,8/30,27.0
+2017-10-01 06:50,os-nosdn-lxd-noha,joid,2/15,13.0
+2017-10-01 06:54,os-odl-nofeature-noha,fuel@x86,21/30,70.0
+2017-10-01 06:52,os-ocl-nofeature-noha,joid,2/27,7.0
+2017-10-01 06:50,os-nosdn-nofeature-ha,joid,9/27,33.0
+2017-10-01 06:54,os-nosdn-nofeature-noha,fuel@x86,13/27,48.0
+2017-10-01 06:52,os-ocl-nofeature-ha,joid,2/27,7.0
+2017-10-01 06:54,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-10-01 06:52,os-nosdn-nofeature-noha,joid,5/27,19.0
+2017-10-01 06:54,os-odl-nofeature-ha,fuel@x86,8/30,27.0
+2017-10-01 06:52,os-nosdn-lxd-ha,joid,2/15,13.0
+2017-10-01 06:54,os-odl_l2-nofeature-ha,fuel@aarch64,8/30,27.0
+2017-10-01 06:52,os-nosdn-lxd-noha,joid,2/15,13.0
+2017-10-01 06:54,os-ocl-nofeature-noha,joid,2/27,7.0
+2017-10-01 06:52,os-nosdn-nofeature-ha,joid,9/27,33.0
+2017-10-01 06:54,os-ocl-nofeature-ha,joid,2/27,7.0
+2017-10-01 06:54,os-nosdn-nofeature-noha,joid,5/27,19.0
+2017-10-01 06:54,os-nosdn-lxd-ha,joid,2/15,13.0
+2017-10-01 06:54,os-nosdn-lxd-noha,joid,2/15,13.0
+2017-10-01 06:54,os-nosdn-nofeature-ha,joid,9/27,33.0
+2017-10-02 02:32,os-nosdn-kvm_ovs_dpdk-noha,apex,2/27,7.0
+2017-10-02 02:32,os-nosdn-fdio-noha,apex,5/27,19.0
+2017-10-02 02:32,os-odl-nofeature-ha,apex,13/30,43.0
+2017-10-02 02:32,os-odl-sfc-noha,apex,4/30,13.0
+2017-10-02 02:32,os-ovn-nofeature-noha,apex,10/27,37.0
+2017-10-02 02:32,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-10-02 02:32,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-10-02 02:32,os-odl-fdio-noha,apex,18/33,55.0
+2017-10-02 02:32,os-odl-bgpvpn-ha,apex,10/27,37.0
+2017-10-02 02:32,os-odl-nofeature-noha,apex,16/30,53.0
+2017-10-02 02:32,os-nosdn-nofeature-noha,apex,16/27,59.0
+2017-10-02 02:32,os-nosdn-ovs_dpdk-ha,apex,4/27,15.0
+2017-10-02 02:32,os-nosdn-ovs_dpdk-noha,apex,4/27,15.0
+2017-10-02 02:32,os-odl-fdio-ha,apex,12/33,36.0
+2017-10-02 02:32,os-nosdn-bar-noha,apex,16/27,59.0
+2017-10-02 02:32,os-nosdn-bar-ha,apex,9/27,33.0
+2017-10-02 02:32,os-nosdn-fdio-ha,apex,5/27,19.0
+2017-10-02 02:32,os-nosdn-nofeature-ha,apex,16/27,59.0
+2017-10-03 06:45,os-nosdn-ovs-ha,fuel@x86,9/18,56
+2017-10-02 02:32,os-nosdn-kvm-noha,compass,7/27,26.0
+2017-10-02 02:32,os-odl-sfc-noha,compass,8/30,27.0
+2017-10-02 02:32,os-odl_l3-nofeature-ha,compass,12/27,44.0
+2017-10-02 02:32,os-nosdn-kvm-ha,compass,6/27,22.0
+2017-10-02 02:32,os-odl-sfc-ha,compass,7/30,23.0
+2017-10-02 02:32,os-nosdn-nofeature-noha,compass,6/27,22.0
+2017-10-02 02:32,os-nosdn-ovs_dpdk-noha,compass,1/27,4.0
+2017-10-02 02:32,os-odl_l2-moon-ha,compass,7/30,23.0
+2017-10-02 02:32,os-nosdn-nofeature-ha,compass,6/27,22.0
+2017-10-02 02:32,os-nosdn-nofeature-ha,daisy,25/27,93.0
+2017-10-02 02:32,os-odl-nofeature-ha,daisy,27/30,90.0
+2017-10-02 02:32,os-odl-nofeature-noha,fuel@x86,21/30,70.0
+2017-10-02 02:32,os-nosdn-nofeature-noha,fuel@x86,13/27,48.0
+2017-10-02 02:32,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-10-02 02:32,os-odl-nofeature-ha,fuel@x86,8/30,27.0
+2017-10-02 02:32,os-odl_l2-nofeature-ha,fuel@aarch64,8/30,27.0
+2017-10-02 02:32,os-ocl-nofeature-noha,joid,2/27,7.0
+2017-10-02 02:32,os-ocl-nofeature-ha,joid,2/27,7.0
+2017-10-02 02:32,os-nosdn-nofeature-noha,joid,5/27,19.0
+2017-10-02 02:32,os-nosdn-lxd-ha,joid,2/15,13.0
+2017-10-02 02:32,os-nosdn-lxd-noha,joid,2/15,13.0
+2017-10-02 02:32,os-nosdn-nofeature-ha,joid,9/27,33.0
+2017-10-03 02:32,os-nosdn-kvm_ovs_dpdk-noha,apex,2/27,7.0
+2017-10-03 02:32,os-nosdn-fdio-noha,apex,5/27,19.0
+2017-10-03 02:32,os-odl-nofeature-ha,apex,13/30,43.0
+2017-10-03 02:32,os-odl-sfc-noha,apex,4/30,13.0
+2017-10-03 02:32,os-nosdn-kvm_ovs_dpdk-ha,apex,2/27,7.0
+2017-10-03 02:32,os-odl-fdio-dvr-noha,apex,4/33,12.0
+2017-10-03 02:32,os-odl-fdio-dvr-ha,apex,4/33,12.0
+2017-10-03 02:32,os-odl-fdio-noha,apex,18/33,55.0
+2017-10-03 02:32,os-odl-bgpvpn-ha,apex,10/27,37.0
+2017-10-03 02:32,os-odl-nofeature-noha,apex,16/30,53.0
+2017-10-03 02:32,os-nosdn-nofeature-noha,apex,16/27,59.0
+2017-10-03 02:32,os-nosdn-ovs_dpdk-ha,apex,4/27,15.0
+2017-10-03 02:32,os-nosdn-ovs_dpdk-noha,apex,4/27,15.0
+2017-10-03 02:32,os-ovn-nofeature-noha,apex,10/27,37.0
+2017-10-03 02:32,os-odl-fdio-ha,apex,11/33,33.0
+2017-10-03 02:32,os-nosdn-bar-noha,apex,16/27,59.0
+2017-10-03 02:32,os-nosdn-bar-ha,apex,16/27,59.0
+2017-10-03 02:32,os-nosdn-fdio-ha,apex,8/27,30.0
+2017-10-03 02:32,os-nosdn-nofeature-ha,apex,16/27,59.0
+2017-10-03 02:32,os-nosdn-kvm-noha,compass,7/27,26.0
+2017-10-03 02:32,os-odl-sfc-noha,compass,8/30,27.0
+2017-10-03 02:32,os-odl_l3-nofeature-ha,compass,12/27,44.0
+2017-10-03 02:32,os-nosdn-kvm-ha,compass,6/27,22.0
+2017-10-03 02:32,os-odl-sfc-ha,compass,7/30,23.0
+2017-10-03 02:32,os-nosdn-nofeature-noha,compass,6/27,22.0
+2017-10-03 02:32,os-nosdn-ovs_dpdk-noha,compass,1/27,4.0
+2017-10-03 02:32,os-odl_l2-moon-ha,compass,7/30,23.0
+2017-10-03 02:32,os-nosdn-nofeature-ha,compass,6/27,22.0
+2017-10-03 02:32,os-nosdn-nofeature-ha,daisy,25/27,93.0
+2017-10-03 02:32,os-odl-nofeature-ha,daisy,26/30,87.0
+2017-10-03 02:32,os-odl-nofeature-noha,fuel@x86,21/30,70.0
+2017-10-03 02:32,os-nosdn-nofeature-noha,fuel@x86,14/27,52.0
+2017-10-03 02:32,os-nosdn-nofeature-ha,fuel@x86,3/27,11.0
+2017-10-03 02:32,os-nosdn-ovs-noha,fuel@x86,21/27,78.0
+2017-10-03 02:32,os-odl-nofeature-ha,fuel@x86,8/30,27.0
+2017-10-03 02:32,os-odl_l2-nofeature-ha,fuel@aarch64,9/30,30.0
+2017-10-03 02:32,os-nosdn-nofeature-ha,fuel@aarch64,3/27,11.0
+2017-10-03 02:32,os-ocl-nofeature-noha,joid,2/27,7.0
+2017-10-03 02:32,os-ocl-nofeature-ha,joid,2/27,7.0
+2017-10-03 02:32,os-nosdn-nofeature-noha,joid,5/27,19.0
+2017-10-03 02:32,os-nosdn-lxd-ha,joid,2/15,13.0
+2017-10-03 02:32,os-nosdn-lxd-noha,joid,2/15,13.0
+2017-10-03 02:32,os-nosdn-nofeature-ha,joid,9/27,33.0
+2017-10-03 06:45,os-nosdn-ovs-ha,fuel@x86,15/27,56
+2017-10-06 06:45,os-odl-nofeature-ha,fuel@aarch64,25/30,83.0
+2017-10-07 06:45,os-odl-nofeature-ha,fuel@aarch64,25/30,83.0
+2017-10-08 06:45,os-odl-nofeature-ha,fuel@aarch64,25/30,83.0
+2017-10-09 06:45,os-nosdn-kvm_ovs_dpdk-noha,apex,4/18,22.0
+2017-10-09 06:45,os-nosdn-fdio-noha,apex,9/18,50.0
+2017-10-09 06:45,os-odl-fdio-noha,apex,18/33,55.0
+2017-10-09 06:45,os-nosdn-kvm_ovs_dpdk-ha,apex,4/18,22.0
+2017-10-09 06:45,os-odl-sfc-noha,apex,2/10,20.0
+2017-10-09 06:45,os-odl-fdio-ha,apex,7/33,21.0
+2017-10-09 06:45,os-odl-nofeature-ha,apex,15/20,75.0
+2017-10-09 06:45,os-ovn-nofeature-noha,apex,6/18,33.0
+2017-10-09 06:45,os-nosdn-bar-ha,apex,25/27,93.0
+2017-10-09 06:45,os-odl-bgpvpn-ha,apex,13/18,72.0
+2017-10-09 06:45,os-nosdn-ovs_dpdk-ha,apex,6/27,22.0
+2017-10-09 06:45,os-nosdn-nofeature-noha,apex,26/27,96.0
+2017-10-09 06:45,os-nosdn-fdio-ha,apex,12/18,67.0
+2017-10-09 06:45,os-nosdn-ovs_dpdk-noha,apex,4/18,22.0
+2017-10-09 06:45,os-odl-fdio_dvr-noha,apex,2/11,18.0
+2017-10-09 06:45,os-nosdn-bar-noha,apex,26/27,96.0
+2017-10-09 06:45,os-odl-nofeature-noha,apex,17/20,85.0
+2017-10-09 06:45,os-odl-sfc-ha,apex,2/10,20.0
+2017-10-09 06:45,os-nosdn-calipso-noha,apex,9/9,100.0
+2017-10-09 06:45,os-nosdn-nofeature-ha,apex,18/18,100.0
+2017-10-09 06:45,os-nosdn-kvm-noha,compass,7/9,78.0
+2017-10-09 06:45,os-odl-sfc-noha,compass,8/10,80.0
+2017-10-09 06:45,os-odl_l3-nofeature-ha,compass,12/18,67.0
+2017-10-09 06:45,os-nosdn-kvm-ha,compass,6/9,67.0
+2017-10-09 06:45,os-odl-sfc-ha,compass,7/10,70.0
+2017-10-09 06:45,os-nosdn-nofeature-noha,compass,6/9,67.0
+2017-10-09 06:45,os-nosdn-ovs_dpdk-noha,compass,1/9,11.0
+2017-10-09 06:45,os-odl_l2-moon-ha,compass,7/10,70.0
+2017-10-09 06:45,os-nosdn-nofeature-ha,compass,6/9,67.0
+2017-10-09 06:45,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-10-09 06:45,os-odl-nofeature-ha,daisy,28/30,93.0
+2017-10-09 06:45,os-nosdn-ovs-noha,fuel@x86,23/27,85.0
+2017-10-09 06:45,os-odl-nofeature-ha,fuel@x86,25/30,83.0
+2017-10-09 06:45,os-odl-nofeature-noha,fuel@x86,23/30,77.0
+2017-10-09 06:45,os-nosdn-nofeature-noha,fuel@x86,22/27,81.0
+2017-10-09 06:45,os-nosdn-ovs-ha,fuel@x86,16/27,59.0
+2017-10-09 06:45,os-nosdn-nofeature-ha,fuel@x86,20/27,74.0
+2017-10-09 06:45,os-odl_l2-nofeature-ha,fuel@aarch64,9/20,45.0
+2017-10-09 06:45,os-nosdn-nofeature-ha,fuel@aarch64,20/27,74.0
+2017-10-09 06:45,os-odl-nofeature-ha,fuel@aarch64,25/30,83.0
+2017-10-09 06:45,os-ocl-nofeature-ha,joid,1/9,11.0
+2017-10-09 06:45,os-nosdn-lxd-noha,joid,1/5,20.0
+2017-10-09 06:45,os-ocl-nofeature-noha,joid,1/9,11.0
+2017-10-09 06:45,os-nosdn-nofeature-ha,joid,4/9,44.0
+2017-10-09 06:45,os-nosdn-lxd-ha,joid,1/5,20.0
+2017-10-09 09:08,os-nosdn-kvm_ovs_dpdk-noha,apex,4/18,22.0
+2017-10-09 09:08,os-nosdn-fdio-noha,apex,9/18,50.0
+2017-10-09 09:08,os-nosdn-ovs_dpdk-ha,apex,6/27,22.0
+2017-10-09 09:08,os-nosdn-kvm_ovs_dpdk-ha,apex,4/18,22.0
+2017-10-09 09:08,os-odl-sfc-noha,apex,2/10,20.0
+2017-10-09 09:08,os-odl-fdio-ha,apex,7/33,21.0
+2017-10-09 09:08,os-odl-nofeature-ha,apex,15/20,75.0
+2017-10-09 09:08,os-ovn-nofeature-noha,apex,6/18,33.0
+2017-10-09 09:08,os-odl-fdio-noha,apex,18/33,55.0
+2017-10-09 09:08,os-odl-bgpvpn-ha,apex,13/18,72.0
+2017-10-09 09:08,os-odl-nofeature-noha,apex,17/20,85.0
+2017-10-09 09:08,os-nosdn-nofeature-noha,apex,26/27,96.0
+2017-10-09 09:08,os-nosdn-fdio-ha,apex,12/18,67.0
+2017-10-09 09:08,os-nosdn-ovs_dpdk-noha,apex,4/18,22.0
+2017-10-09 09:08,os-odl-fdio_dvr-noha,apex,2/11,18.0
+2017-10-09 09:08,os-nosdn-bar-noha,apex,26/27,96.0
+2017-10-09 09:08,os-nosdn-bar-ha,apex,18/18,100.0
+2017-10-09 09:08,os-odl-sfc-ha,apex,2/10,20.0
+2017-10-09 09:08,os-nosdn-calipso-noha,apex,9/9,100.0
+2017-10-09 09:08,os-nosdn-nofeature-ha,apex,18/18,100.0
+2017-10-09 09:08,os-nosdn-kvm-noha,compass,7/9,78.0
+2017-10-09 09:08,os-odl-sfc-noha,compass,8/10,80.0
+2017-10-09 09:08,os-odl_l3-nofeature-ha,compass,12/18,67.0
+2017-10-09 09:08,os-nosdn-kvm-ha,compass,6/9,67.0
+2017-10-09 09:08,os-odl-sfc-ha,compass,7/10,70.0
+2017-10-09 09:08,os-nosdn-nofeature-noha,compass,6/9,67.0
+2017-10-09 09:08,os-nosdn-ovs_dpdk-noha,compass,1/9,11.0
+2017-10-09 09:08,os-odl_l2-moon-ha,compass,7/10,70.0
+2017-10-09 09:08,os-nosdn-nofeature-ha,compass,6/9,67.0
+2017-10-09 09:08,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-10-09 09:08,os-odl-nofeature-ha,daisy,28/30,93.0
+2017-10-09 09:08,os-nosdn-ovs-noha,fuel@x86,23/27,85.0
+2017-10-09 09:08,os-odl-nofeature-ha,fuel@x86,25/30,83.0
+2017-10-09 09:08,os-odl-nofeature-noha,fuel@x86,23/30,77.0
+2017-10-09 09:08,os-nosdn-nofeature-noha,fuel@x86,22/27,81.0
+2017-10-09 09:08,os-nosdn-ovs-ha,fuel@x86,16/27,59.0
+2017-10-09 09:08,os-nosdn-nofeature-ha,fuel@x86,20/27,74.0
+2017-10-09 09:08,os-odl_l2-nofeature-ha,fuel@aarch64,9/20,45.0
+2017-10-09 09:08,os-nosdn-nofeature-ha,fuel@aarch64,20/27,74.0
+2017-10-09 09:08,os-odl-nofeature-ha,fuel@aarch64,25/30,83.0
+2017-10-09 09:08,os-ocl-nofeature-ha,joid,1/9,11.0
+2017-10-09 09:08,os-nosdn-lxd-noha,joid,1/5,20.0
+2017-10-09 09:08,os-ocl-nofeature-noha,joid,1/9,11.0
+2017-10-09 09:08,os-nosdn-nofeature-ha,joid,4/9,44.0
+2017-10-09 09:08,os-nosdn-lxd-ha,joid,1/5,20.0
+2017-10-10 02:32,os-nosdn-kvm_ovs_dpdk-noha,apex,4/18,22.0
+2017-10-10 02:32,os-nosdn-fdio-noha,apex,14/27,52.0
+2017-10-10 02:32,os-odl-fdio-noha,apex,18/33,55.0
+2017-10-10 02:32,os-nosdn-kvm_ovs_dpdk-ha,apex,4/18,22.0
+2017-10-10 02:32,os-odl-sfc-noha,apex,2/10,20.0
+2017-10-10 02:32,os-odl-fdio-ha,apex,4/22,18.0
+2017-10-10 02:32,os-odl-nofeature-ha,apex,20/30,67.0
+2017-10-10 02:32,os-ovn-nofeature-noha,apex,9/27,33.0
+2017-10-10 02:32,os-nosdn-ovs_dpdk-ha,apex,4/18,22.0
+2017-10-10 02:32,os-odl-bgpvpn-ha,apex,19/27,70.0
+2017-10-10 02:32,os-odl-nofeature-noha,apex,17/20,85.0
+2017-10-10 02:32,os-nosdn-nofeature-noha,apex,26/27,96.0
+2017-10-10 02:32,os-nosdn-fdio-ha,apex,15/27,56.0
+2017-10-10 02:32,os-nosdn-ovs_dpdk-noha,apex,4/18,22.0
+2017-10-10 02:32,os-odl-fdio_dvr-noha,apex,2/11,18.0
+2017-10-10 02:32,os-nosdn-bar-noha,apex,18/18,100.0
+2017-10-10 02:32,os-nosdn-bar-ha,apex,18/18,100.0
+2017-10-10 02:32,os-odl-sfc-ha,apex,2/10,20.0
+2017-10-10 02:32,os-nosdn-calipso-noha,apex,9/9,100.0
+2017-10-10 02:32,os-nosdn-nofeature-ha,apex,18/18,100.0
+2017-10-10 02:32,os-nosdn-kvm-noha,compass,7/9,78.0
+2017-10-10 02:32,os-odl-sfc-noha,compass,8/10,80.0
+2017-10-10 02:32,os-odl_l3-nofeature-ha,compass,12/18,67.0
+2017-10-10 02:32,os-nosdn-kvm-ha,compass,7/9,78.0
+2017-10-10 02:32,os-odl_l2-moon-ha,compass,7/10,70.0
+2017-10-10 02:32,os-nosdn-nofeature-ha,compass,6/9,67.0
+2017-10-10 02:32,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-10-10 02:32,os-odl-nofeature-ha,daisy,28/30,93.0
+2017-10-10 02:32,os-nosdn-ovs-noha,fuel@x86,24/27,89.0
+2017-10-10 02:32,os-odl-nofeature-ha,fuel@x86,25/30,83.0
+2017-10-10 02:32,os-odl-nofeature-noha,fuel@x86,24/30,80.0
+2017-10-10 02:32,os-nosdn-nofeature-noha,fuel@x86,23/27,85.0
+2017-10-10 02:32,os-nosdn-ovs-ha,fuel@x86,17/27,63.0
+2017-10-10 02:32,os-nosdn-nofeature-ha,fuel@x86,20/27,74.0
+2017-10-10 02:32,os-odl_l2-nofeature-ha,fuel@aarch64,1/10,10.0
+2017-10-10 02:32,os-nosdn-nofeature-ha,fuel@aarch64,20/27,74.0
+2017-10-10 02:32,os-odl-nofeature-ha,fuel@aarch64,25/30,83.0
+2017-10-10 02:32,os-nosdn-lxd-noha,joid,1/5,20.0
+2017-10-10 02:32,os-nosdn-nofeature-ha,joid,4/9,44.0
+2017-10-10 06:10,os-nosdn-kvm_ovs_dpdk-noha,apex,4/18,22.0
+2017-10-10 06:10,os-nosdn-fdio-noha,apex,14/27,52.0
+2017-10-10 06:10,os-odl-fdio-noha,apex,19/33,58.0
+2017-10-10 06:10,os-nosdn-kvm_ovs_dpdk-ha,apex,4/18,22.0
+2017-10-10 06:10,os-odl-sfc-noha,apex,2/10,20.0
+2017-10-10 06:10,os-odl-fdio-ha,apex,4/22,18.0
+2017-10-10 06:10,os-odl-nofeature-ha,apex,20/30,67.0
+2017-10-10 06:10,os-ovn-nofeature-noha,apex,9/27,33.0
+2017-10-10 06:10,os-nosdn-ovs_dpdk-ha,apex,4/18,22.0
+2017-10-10 06:10,os-odl-bgpvpn-ha,apex,19/27,70.0
+2017-10-10 06:10,os-odl-nofeature-noha,apex,17/20,85.0
+2017-10-10 06:10,os-nosdn-nofeature-noha,apex,26/27,96.0
+2017-10-10 06:10,os-nosdn-fdio-ha,apex,15/27,56.0
+2017-10-10 06:10,os-nosdn-ovs_dpdk-noha,apex,4/18,22.0
+2017-10-10 06:10,os-odl-fdio_dvr-noha,apex,2/11,18.0
+2017-10-10 06:10,os-nosdn-bar-noha,apex,18/18,100.0
+2017-10-10 06:10,os-nosdn-bar-ha,apex,18/18,100.0
+2017-10-10 06:10,os-odl-sfc-ha,apex,2/10,20.0
+2017-10-10 06:10,os-nosdn-calipso-noha,apex,9/9,100.0
+2017-10-10 06:10,os-nosdn-nofeature-ha,apex,18/18,100.0
+2017-10-10 06:10,os-odl_l3-nofeature-ha,compass,6/9,67.0
+2017-10-10 06:10,os-nosdn-nofeature-ha,compass,6/9,67.0
+2017-10-10 06:10,os-nosdn-kvm-ha,compass,7/9,78.0
+2017-10-10 06:10,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-10-10 06:10,os-odl-nofeature-ha,daisy,28/30,93.0
+2017-10-10 06:10,os-nosdn-ovs-noha,fuel@x86,24/27,89.0
+2017-10-10 06:10,os-odl-nofeature-ha,fuel@x86,25/30,83.0
+2017-10-10 06:10,os-odl-nofeature-noha,fuel@x86,24/30,80.0
+2017-10-10 06:10,os-nosdn-nofeature-noha,fuel@x86,23/27,85.0
+2017-10-10 06:10,os-nosdn-ovs-ha,fuel@x86,17/27,63.0
+2017-10-10 06:10,os-nosdn-nofeature-ha,fuel@x86,20/27,74.0
+2017-10-10 06:10,os-odl_l2-nofeature-ha,fuel@aarch64,1/10,10.0
+2017-10-10 06:10,os-nosdn-nofeature-ha,fuel@aarch64,20/27,74.0
+2017-10-10 06:10,os-odl-nofeature-ha,fuel@aarch64,25/30,83.0
+2017-10-10 06:10,os-nosdn-lxd-noha,joid,1/5,20.0
+2017-10-10 06:10,os-nosdn-nofeature-ha,joid,4/9,44.0
+2017-10-11 02:32,os-nosdn-kvm_ovs_dpdk-noha,apex,4/18,22.0
+2017-10-11 02:32,os-nosdn-fdio-noha,apex,12/18,67.0
+2017-10-11 02:32,os-odl-fdio-noha,apex,15/33,45.0
+2017-10-11 02:32,os-nosdn-kvm_ovs_dpdk-ha,apex,4/18,22.0
+2017-10-11 02:32,os-odl-sfc-noha,apex,2/10,20.0
+2017-10-11 02:32,os-odl-fdio-ha,apex,4/22,18.0
+2017-10-11 02:32,os-odl-nofeature-ha,apex,15/20,75.0
+2017-10-11 02:32,os-ovn-nofeature-noha,apex,9/27,33.0
+2017-10-11 02:32,os-nosdn-ovs_dpdk-ha,apex,6/27,22.0
+2017-10-11 02:32,os-odl-bgpvpn-ha,apex,19/27,70.0
+2017-10-11 02:32,os-odl-nofeature-noha,apex,16/20,80.0
+2017-10-11 02:32,os-nosdn-ovs_dpdk-noha,apex,4/18,22.0
+2017-10-11 02:32,os-nosdn-fdio-ha,apex,15/27,56.0
+2017-10-11 02:32,os-odl-fdio_dvr-noha,apex,2/11,18.0
+2017-10-11 02:32,os-nosdn-bar-noha,apex,26/27,96.0
+2017-10-11 02:32,os-nosdn-nofeature-noha,apex,18/18,100.0
+2017-10-11 02:32,os-nosdn-bar-ha,apex,25/27,93.0
+2017-10-11 02:32,os-odl-sfc-ha,apex,2/10,20.0
+2017-10-11 02:32,os-nosdn-calipso-noha,apex,9/9,100.0
+2017-10-11 02:32,os-nosdn-nofeature-ha,apex,18/18,100.0
+2017-10-11 02:32,os-nosdn-kvm-noha,compass,7/9,78.0
+2017-10-11 02:32,os-odl-sfc-noha,compass,7/10,70.0
+2017-10-11 02:32,os-odl_l3-nofeature-ha,compass,6/9,67.0
+2017-10-11 02:32,os-nosdn-kvm-ha,compass,13/18,72.0
+2017-10-11 02:32,os-odl-sfc-ha,compass,6/10,60.0
+2017-10-11 02:32,os-nosdn-nofeature-noha,compass,7/9,78.0
+2017-10-11 02:32,os-nosdn-ovs_dpdk-ha,compass,1/9,11.0
+2017-10-11 02:32,os-nosdn-ovs_dpdk-noha,compass,1/9,11.0
+2017-10-11 02:32,os-odl_l2-moon-ha,compass,7/10,70.0
+2017-10-11 02:32,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-10-11 02:32,os-odl-nofeature-ha,daisy,27/30,90.0
+2017-10-11 02:32,os-nosdn-ovs-noha,fuel@x86,24/27,89.0
+2017-10-11 02:32,os-odl-nofeature-ha,fuel@x86,25/30,83.0
+2017-10-11 02:32,os-odl-nofeature-noha,fuel@x86,26/30,87.0
+2017-10-11 02:32,os-nosdn-nofeature-noha,fuel@x86,22/27,81.0
+2017-10-11 02:32,os-nosdn-ovs-ha,fuel@x86,17/27,63.0
+2017-10-11 02:32,os-nosdn-nofeature-ha,fuel@x86,20/27,74.0
+2017-10-11 02:32,os-odl_l2-nofeature-ha,fuel@aarch64,1/10,10.0
+2017-10-11 02:32,os-nosdn-nofeature-ha,fuel@aarch64,20/27,74.0
+2017-10-11 02:32,os-odl-nofeature-ha,fuel@aarch64,25/30,83.0
+2017-10-11 02:32,os-ocl-nofeature-ha,joid,1/9,11.0
+2017-10-11 02:32,os-ocl-nofeature-noha,joid,1/9,11.0
+2017-10-12 02:32,os-nosdn-kvm_ovs_dpdk-noha,apex,4/18,22.0
+2017-10-12 02:32,os-nosdn-fdio-noha,apex,14/27,52.0
+2017-10-12 02:32,os-nosdn-kvm_ovs_dpdk-ha,apex,4/18,22.0
+2017-10-12 02:32,os-odl-sfc-noha,apex,4/20,20.0
+2017-10-12 02:32,os-odl-fdio-ha,apex,4/22,18.0
+2017-10-12 02:32,os-odl-nofeature-ha,apex,20/30,67.0
+2017-10-12 02:32,os-ovn-nofeature-noha,apex,6/18,33.0
+2017-10-12 02:32,os-nosdn-fdio-ha,apex,15/27,56.0
+2017-10-12 02:32,os-odl-bgpvpn-ha,apex,14/18,78.0
+2017-10-12 02:32,os-nosdn-ovs_dpdk-ha,apex,4/18,22.0
+2017-10-12 02:32,os-nosdn-nofeature-noha,apex,27/27,100.0
+2017-10-12 02:32,os-odl-fdio-noha,apex,4/22,18.0
+2017-10-12 02:32,os-nosdn-ovs_dpdk-noha,apex,4/18,22.0
+2017-10-12 02:32,os-odl-fdio_dvr-noha,apex,2/11,18.0
+2017-10-12 02:32,os-nosdn-bar-noha,apex,18/18,100.0
+2017-10-12 02:32,os-odl-nofeature-noha,apex,16/20,80.0
+2017-10-12 02:32,os-nosdn-bar-ha,apex,25/27,93.0
+2017-10-12 02:32,os-odl-sfc-ha,apex,2/10,20.0
+2017-10-12 02:32,os-nosdn-calipso-noha,apex,18/18,100.0
+2017-10-12 02:32,os-nosdn-nofeature-ha,apex,18/18,100.0
+2017-10-12 02:32,os-nosdn-kvm-noha,compass,7/9,78.0
+2017-10-12 02:32,os-odl-sfc-noha,compass,8/10,80.0
+2017-10-12 02:32,os-odl_l2-moon-noha,compass,7/10,70.0
+2017-10-12 02:32,os-odl_l3-nofeature-ha,compass,12/18,67.0
+2017-10-12 02:32,os-nosdn-kvm-ha,compass,14/18,78.0
+2017-10-12 02:32,os-odl-sfc-ha,compass,15/20,75.0
+2017-10-12 02:32,os-nosdn-nofeature-noha,compass,7/9,78.0
+2017-10-12 02:32,os-nosdn-ovs_dpdk-ha,compass,1/9,11.0
+2017-10-12 02:32,os-nosdn-ovs_dpdk-noha,compass,1/9,11.0
+2017-10-12 02:32,os-odl_l3-nofeature-noha,compass,7/9,78.0
+2017-10-12 02:32,os-odl_l2-moon-ha,compass,14/20,70.0
+2017-10-12 02:32,os-nosdn-nofeature-ha,compass,13/18,72.0
+2017-10-12 02:32,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-10-12 02:32,os-odl-nofeature-ha,daisy,26/30,87.0
+2017-10-12 02:32,os-nosdn-ovs-noha,fuel@x86,24/27,89.0
+2017-10-12 02:32,os-odl-nofeature-ha,fuel@x86,24/30,80.0
+2017-10-12 02:32,os-odl-nofeature-noha,fuel@x86,25/30,83.0
+2017-10-12 02:32,os-nosdn-nofeature-noha,fuel@x86,21/27,78.0
+2017-10-12 02:32,os-nosdn-ovs-ha,fuel@x86,23/27,85.0
+2017-10-12 02:32,os-nosdn-nofeature-ha,fuel@x86,20/27,74.0
+2017-10-12 02:32,os-odl_l2-nofeature-ha,fuel@aarch64,1/10,10.0
+2017-10-12 02:32,os-nosdn-nofeature-noha,fuel@aarch64,1/9,11.0
+2017-10-12 02:32,os-nosdn-nofeature-ha,fuel@aarch64,20/27,74.0
+2017-10-12 02:32,os-odl-nofeature-ha,fuel@aarch64,24/30,80.0
+2017-10-12 02:32,os-ocl-nofeature-noha,joid,1/9,11.0
+2017-10-12 02:32,os-ocl-nofeature-ha,joid,1/9,11.0
+2017-10-12 02:32,os-nosdn-nofeature-noha,joid,5/9,56.0
+2017-10-12 02:32,os-nosdn-lxd-ha,joid,1/5,20.0
+2017-10-12 02:32,os-nosdn-lxd-noha,joid,1/5,20.0
+2017-10-12 02:32,os-nosdn-nofeature-ha,joid,5/9,56.0
+2017-10-13 02:32,os-nosdn-kvm_ovs_dpdk-noha,apex,4/18,22.0
+2017-10-13 02:32,os-nosdn-fdio-noha,apex,14/27,52.0
+2017-10-13 02:32,os-nosdn-kvm_ovs_dpdk-ha,apex,4/18,22.0
+2017-10-13 02:32,os-odl-fdio-noha,apex,4/22,18.0
+2017-10-13 02:32,os-odl-nofeature-ha,apex,20/30,67.0
+2017-10-13 02:32,os-odl-fdio-ha,apex,2/11,18.0
+2017-10-13 02:32,os-odl-sfc-noha,apex,4/20,20.0
+2017-10-13 02:32,os-ovn-nofeature-noha,apex,9/27,33.0
+2017-10-13 02:32,os-nosdn-ovs_dpdk-ha,apex,4/18,22.0
+2017-10-13 02:32,os-odl-bgpvpn-ha,apex,21/27,78.0
+2017-10-13 02:32,os-odl-nofeature-noha,apex,17/20,85.0
+2017-10-13 02:32,os-nosdn-nofeature-noha,apex,27/27,100.0
+2017-10-13 02:32,os-nosdn-fdio-ha,apex,12/18,67.0
+2017-10-13 02:32,os-nosdn-ovs_dpdk-noha,apex,4/18,22.0
+2017-10-13 02:32,os-odl-fdio_dvr-noha,apex,2/11,18.0
+2017-10-13 02:32,os-nosdn-bar-noha,apex,18/18,100.0
+2017-10-13 02:32,os-nosdn-bar-ha,apex,18/18,100.0
+2017-10-13 02:32,os-odl-sfc-ha,apex,2/10,20.0
+2017-10-13 02:32,os-nosdn-calipso-noha,apex,18/18,100.0
+2017-10-13 02:32,os-nosdn-nofeature-ha,apex,26/27,96.0
+2017-10-13 02:32,os-nosdn-kvm-noha,compass,14/18,78.0
+2017-10-13 02:32,os-odl-sfc-noha,compass,16/20,80.0
+2017-10-13 02:32,os-odl_l2-moon-noha,compass,14/20,70.0
+2017-10-13 02:32,os-odl_l3-nofeature-ha,compass,13/18,72.0
+2017-10-13 02:32,os-nosdn-kvm-ha,compass,14/18,78.0
+2017-10-13 02:32,os-odl-sfc-ha,compass,15/20,75.0
+2017-10-13 02:32,os-nosdn-nofeature-noha,compass,14/18,78.0
+2017-10-13 02:32,os-nosdn-ovs_dpdk-ha,compass,2/18,11.0
+2017-10-13 02:32,os-nosdn-ovs_dpdk-noha,compass,2/18,11.0
+2017-10-13 02:32,os-odl_l3-nofeature-noha,compass,7/9,78.0
+2017-10-13 02:32,os-odl_l2-moon-ha,compass,14/20,70.0
+2017-10-13 02:32,os-nosdn-nofeature-ha,compass,20/27,74.0
+2017-10-13 02:32,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-10-13 02:32,os-odl-nofeature-ha,daisy,28/30,93.0
+2017-10-13 02:32,os-nosdn-ovs-noha,fuel@x86,24/27,89.0
+2017-10-13 02:32,os-odl-nofeature-ha,fuel@x86,24/30,80.0
+2017-10-13 02:32,os-odl-nofeature-noha,fuel@x86,25/30,83.0
+2017-10-13 02:32,os-nosdn-nofeature-noha,fuel@x86,21/27,78.0
+2017-10-13 02:32,os-nosdn-ovs-ha,fuel@x86,23/27,85.0
+2017-10-13 02:32,os-nosdn-nofeature-ha,fuel@x86,22/18,122.0
+2017-10-13 02:32,os-nosdn-nofeature-noha,fuel@aarch64,1/9,11.0
+2017-10-13 02:32,os-nosdn-nofeature-ha,fuel@aarch64,22/27,81.0
+2017-10-13 02:32,os-odl-nofeature-ha,fuel@aarch64,24/30,80.0
+2017-10-13 02:32,os-ocl-nofeature-noha,joid,2/18,11.0
+2017-10-13 02:32,os-ocl-nofeature-ha,joid,2/18,11.0
+2017-10-13 02:32,os-nosdn-nofeature-noha,joid,10/18,56.0
+2017-10-13 02:32,os-nosdn-openbaton-ha,joid,5/9,56.0
+2017-10-13 02:32,os-nosdn-lxd-ha,joid,2/10,20.0
+2017-10-13 02:32,os-nosdn-lxd-noha,joid,2/10,20.0
+2017-10-13 02:32,os-nosdn-nofeature-ha,joid,5/9,56.0
+2017-10-20 07:42,os-nosdn-kvm_ovs_dpdk-noha,apex,4/18,22.0
+2017-10-20 07:42,os-nosdn-fdio-noha,apex,9/18,50.0
+2017-10-20 07:42,os-nosdn-kvm_ovs_dpdk-ha,apex,4/18,22.0
+2017-10-20 07:42,os-odl-fdio-ha,apex,24/33,73.0
+2017-10-20 07:42,os-odl-sfc-noha,apex,8/30,27.0
+2017-10-20 07:42,os-ovn-nofeature-noha,apex,6/18,33.0
+2017-10-20 07:42,os-nosdn-fdio-ha,apex,12/18,67.0
+2017-10-20 07:42,os-odl-bgpvpn-ha,apex,16/18,89.0
+2017-10-20 07:42,os-nosdn-ovs_dpdk-ha,apex,4/18,22.0
+2017-10-20 07:42,os-nosdn-ovs_dpdk-noha,apex,4/18,22.0
+2017-10-20 07:42,os-odl-fdio-noha,apex,24/33,73.0
+2017-10-20 07:42,os-odl-nofeature-ha,apex,18/20,90.0
+2017-10-20 07:42,os-nosdn-nofeature-noha,apex,18/18,100.0
+2017-10-20 07:42,os-odl-fdio_dvr-noha,apex,6/33,18.0
+2017-10-20 07:42,os-nosdn-bar-noha,apex,18/18,100.0
+2017-10-20 07:42,os-odl-nofeature-noha,apex,18/20,90.0
+2017-10-20 07:42,os-nosdn-bar-ha,apex,26/27,96.0
+2017-10-20 07:42,os-nosdn-calipso-noha,apex,18/18,100.0
+2017-10-20 07:42,os-nosdn-nofeature-ha,apex,26/27,96.0
+2017-10-20 07:42,os-nosdn-kvm-noha,compass,26/27,96.0
+2017-10-20 07:42,os-odl-sfc-noha,compass,20/30,67.0
+2017-10-20 07:42,os-odl_l2-moon-noha,compass,24/30,80.0
+2017-10-20 07:42,os-odl_l3-nofeature-ha,compass,21/27,78.0
+2017-10-20 07:42,os-nosdn-kvm-ha,compass,26/27,96.0
+2017-10-20 07:42,os-odl-sfc-ha,compass,25/30,83.0
+2017-10-20 07:42,os-nosdn-nofeature-noha,compass,26/27,96.0
+2017-10-20 07:42,os-nosdn-ovs_dpdk-ha,compass,2/18,11.0
+2017-10-20 07:42,os-nosdn-ovs_dpdk-noha,compass,3/27,11.0
+2017-10-20 07:42,os-odl_l3-nofeature-noha,compass,14/18,78.0
+2017-10-20 07:42,os-odl_l2-moon-ha,compass,26/30,87.0
+2017-10-20 07:42,os-nosdn-nofeature-ha,compass,24/27,89.0
+2017-10-20 07:42,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-10-20 07:42,os-odl-nofeature-ha,daisy,25/30,83.0
+2017-10-20 07:42,os-nosdn-ovs-noha,fuel@x86,25/27,93.0
+2017-10-20 07:42,os-odl-nofeature-ha,fuel@x86,29/30,97.0
+2017-10-20 07:42,os-odl-nofeature-noha,fuel@x86,30/30,100.0
+2017-10-20 07:42,os-nosdn-nofeature-noha,fuel@x86,27/27,100.0
+2017-10-20 07:42,os-nosdn-ovs-ha,fuel@x86,12/27,44.0
+2017-10-20 07:42,os-nosdn-nofeature-ha,fuel@x86,15/18,83.0
+2017-10-20 07:42,os-nosdn-nofeature-noha,fuel@aarch64,1/9,11.0
+2017-10-20 07:42,os-nosdn-nofeature-ha,fuel@aarch64,23/27,85.0
+2017-10-20 07:42,os-ocl-nofeature-noha,joid,3/27,11.0
+2017-10-20 07:42,os-ocl-nofeature-ha,joid,3/27,11.0
+2017-10-20 07:42,os-nosdn-nofeature-noha,joid,15/27,56.0
+2017-10-20 07:42,os-nosdn-openbaton-ha,joid,5/18,28.0
+2017-10-20 07:42,os-nosdn-lxd-ha,joid,2/15,13.0
+2017-10-20 07:42,os-nosdn-lxd-noha,joid,3/15,20.0
+2017-10-20 07:42,os-nosdn-nofeature-ha,joid,10/18,56.0
+2017-10-20 08:41,os-nosdn-kvm_ovs_dpdk-noha,apex,4/18,22.0
+2017-10-20 08:41,os-nosdn-fdio-noha,apex,9/18,50.0
+2017-10-20 08:41,os-nosdn-kvm_ovs_dpdk-ha,apex,4/18,22.0
+2017-10-20 08:41,os-odl-fdio-ha,apex,24/33,73.0
+2017-10-20 08:41,os-odl-sfc-noha,apex,8/30,27.0
+2017-10-20 08:41,os-ovn-nofeature-noha,apex,6/18,33.0
+2017-10-20 08:41,os-nosdn-fdio-ha,apex,12/18,67.0
+2017-10-20 08:41,os-odl-bgpvpn-ha,apex,16/18,89.0
+2017-10-20 08:41,os-nosdn-ovs_dpdk-ha,apex,4/18,22.0
+2017-10-20 08:41,os-nosdn-ovs_dpdk-noha,apex,4/18,22.0
+2017-10-20 08:41,os-odl-fdio-noha,apex,24/33,73.0
+2017-10-20 08:41,os-odl-nofeature-ha,apex,18/20,90.0
+2017-10-20 08:41,os-nosdn-nofeature-noha,apex,18/18,100.0
+2017-10-20 08:41,os-odl-fdio_dvr-noha,apex,6/33,18.0
+2017-10-20 08:41,os-nosdn-bar-noha,apex,18/18,100.0
+2017-10-20 08:41,os-odl-nofeature-noha,apex,18/20,90.0
+2017-10-20 08:41,os-nosdn-bar-ha,apex,26/27,96.0
+2017-10-20 08:41,os-nosdn-calipso-noha,apex,18/18,100.0
+2017-10-20 08:41,os-nosdn-nofeature-ha,apex,26/27,96.0
+2017-10-20 08:41,os-nosdn-kvm-noha,compass,26/27,96.0
+2017-10-20 08:41,os-odl-sfc-noha,compass,20/30,67.0
+2017-10-20 08:41,os-odl_l2-moon-noha,compass,24/30,80.0
+2017-10-20 08:41,os-odl_l3-nofeature-ha,compass,21/27,78.0
+2017-10-20 08:41,os-nosdn-kvm-ha,compass,26/27,96.0
+2017-10-20 08:41,os-odl-sfc-ha,compass,26/30,87.0
+2017-10-20 08:41,os-nosdn-nofeature-noha,compass,26/27,96.0
+2017-10-20 08:41,os-nosdn-ovs_dpdk-ha,compass,2/18,11.0
+2017-10-20 08:41,os-nosdn-ovs_dpdk-noha,compass,3/27,11.0
+2017-10-20 08:41,os-odl_l3-nofeature-noha,compass,14/18,78.0
+2017-10-20 08:41,os-odl_l2-moon-ha,compass,26/30,87.0
+2017-10-20 08:41,os-nosdn-nofeature-ha,compass,24/27,89.0
+2017-10-20 08:41,os-nosdn-nofeature-ha,daisy,26/27,96.0
+2017-10-20 08:41,os-odl-nofeature-ha,daisy,25/30,83.0
+2017-10-20 08:41,os-nosdn-ovs-noha,fuel@x86,25/27,93.0
+2017-10-20 08:41,os-odl-nofeature-ha,fuel@x86,29/30,97.0
+2017-10-20 08:41,os-odl-nofeature-noha,fuel@x86,30/30,100.0
+2017-10-20 08:41,os-nosdn-nofeature-noha,fuel@x86,27/27,100.0
+2017-10-20 08:41,os-nosdn-ovs-ha,fuel@x86,12/27,44.0
+2017-10-20 08:41,os-nosdn-nofeature-ha,fuel@x86,15/18,83.0
+2017-10-20 08:41,os-nosdn-nofeature-noha,fuel@aarch64,1/9,11.0
+2017-10-20 08:41,os-nosdn-nofeature-ha,fuel@aarch64,23/27,85.0
+2017-10-20 08:41,os-odl-nofeature-ha,fuel@aarch64,23/27,115.0
+2017-10-20 08:41,os-ocl-nofeature-noha,joid,3/27,11.0
+2017-10-20 08:41,os-ocl-nofeature-ha,joid,3/27,11.0
+2017-10-20 08:41,os-nosdn-nofeature-noha,joid,15/27,56.0
+2017-10-20 08:41,os-nosdn-openbaton-ha,joid,5/18,28.0
+2017-10-20 08:41,os-nosdn-lxd-ha,joid,2/15,13.0
+2017-10-20 08:41,os-nosdn-lxd-noha,joid,3/15,20.0
+2017-10-20 08:41,os-nosdn-nofeature-ha,joid,10/18,56.0