aboutsummaryrefslogtreecommitdiffstats
path: root/docs/results/danube/1.0/joid.html
blob: 98c1e0ab96427a5b20bf01acfb46a6d0875922d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
 <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');

    	// assign success rate to the gauge
    	function updateReadings() {
    	    gaugeScenario1.update(70.8333333333);gaugeScenario2.update(93.9393939394);gaugeScenario3.update(75.0);gaugeScenario4.update(96.9696969697);gaugeScenario5.update(25.0);
    	}
    	updateReadings();
        }

        // trend line management
        d3.csv("./scenario_history.txt", function(data) {
       // ***************************************
       // Create the trend line
      // for scenario os-nosdn-lxd-noha
       // Filter results
        var trend1 = data.filter(function(row) {
    	     return row["scenario"]=="os-nosdn-lxd-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-nosdn-nofeature-noha
       // Filter results
        var trend2 = data.filter(function(row) {
    	     return row["scenario"]=="os-nosdn-nofeature-noha" && 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-lxd-ha
       // Filter results
        var trend3 = data.filter(function(row) {
    	     return row["scenario"]=="os-nosdn-lxd-ha" && 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-nofeature-ha
       // Filter results
        var trend4 = data.filter(function(row) {
    	     return row["scenario"]=="os-nosdn-nofeature-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-odl_l2-nofeature-ha
       // Filter results
        var trend5 = data.filter(function(row) {
    	     return row["scenario"]=="os-odl_l2-nofeature-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)
        // ****************************************
    });
    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 Danube 1.0 status page (2017-03-31 01:45)</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="./fuel.html">Fuel</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 (danube) run over the last 10 days </b></h4></div>
                <table class="table">
                    <tr>
                        <th width="40%">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-danube/57/console>os-nosdn-lxd-noha</a></td>
                                <td><div id="gaugeScenario1"></div></td>
                                <td><div id="trend_svg1"></div></td>
                                <td>17/24</td>
                                <td>6</td>
                            </tr><tr class="tr-ok">
                                <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-danube/55/console>os-nosdn-nofeature-noha</a></td>
                                <td><div id="gaugeScenario2"></div></td>
                                <td><div id="trend_svg2"></div></td>
                                <td>31/33</td>
                                <td>6</td>
                            </tr><tr class="tr-ok">
                                <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-danube/56/console>os-nosdn-lxd-ha</a></td>
                                <td><div id="gaugeScenario3"></div></td>
                                <td><div id="trend_svg3"></div></td>
                                <td>18/24</td>
                                <td>5</td>
                            </tr><tr class="tr-ok">
                                <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-danube/62/console>os-nosdn-nofeature-ha</a></td>
                                <td><div id="gaugeScenario4"></div></td>
                                <td><div id="trend_svg4"></div></td>
                                <td>32/33</td>
                                <td>6</td>
                            </tr><tr class="tr-ok">
                                <td><a href=https://build.opnfv.org/ci/view/functest/job/functest-joid-baremetal-daily-danube/46/console>os-odl_l2-nofeature-ha</a></td>
                                <td><div id="gaugeScenario5"></div></td>
                                <td><div id="trend_svg5"></div></td>
                                <td>9/36</td>
                                <td>4</td>
                            </tr>
                        </table>
        </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>
                            Health (api)

                             </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-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-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-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-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-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-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>
                            Health (api)

                             </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-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-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>
                            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-few-clouds.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_l2-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-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>
    see <a href="https://wiki.opnfv.org/pages/viewpage.action?pageId=6828617">Functest scoring wiki page</a> for details on scenario scoring
    </div>
    <div class="col-md-1"></div>
</div>