18b485838SMatthew Dillon<!DOCTYPE html> 28b485838SMatthew Dillon<html lang="en"> 38b485838SMatthew Dillon <head> 48b485838SMatthew Dillon <meta charset="utf-8"> 58b485838SMatthew Dillon <meta name="viewport" content="width=device-width, initial-scale=1.0"> 68b485838SMatthew Dillon 78b485838SMatthew Dillon <title>Synth</title> 88b485838SMatthew Dillon 98b485838SMatthew Dillon <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> 108b485838SMatthew Dillon <script src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js" type="text/javascript" charset="utf-8"></script> 118b485838SMatthew Dillon <link href="https://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css"> 128b485838SMatthew Dillon <link href="progress.css" type="text/css" rel="stylesheet" /> 138b485838SMatthew Dillon <script src="progress.js" type="text/javascript"></script> 148b485838SMatthew Dillon 158b485838SMatthew Dillon <link rel="icon" type="image/png" href="favicon.png"> 168b485838SMatthew Dillon </head> 178b485838SMatthew Dillon <body> 188b485838SMatthew Dillon <div id="header"> 198b485838SMatthew Dillon <table class="layout"> 208b485838SMatthew Dillon <tr> 218b485838SMatthew Dillon <td> 228b485838SMatthew Dillon <div id="logo"> 238b485838SMatthew Dillon <img src="dsynth.png" alt="logo" /> 248b485838SMatthew Dillon </div> 258b485838SMatthew Dillon </td> 268b485838SMatthew Dillon <td> 278b485838SMatthew Dillon <div id="build_info"> 288b485838SMatthew Dillon <table> 298b485838SMatthew Dillon <tr> 308b485838SMatthew Dillon <th>Profile:</th> 318b485838SMatthew Dillon <td id="profile"></td> 328b485838SMatthew Dillon </tr> 338b485838SMatthew Dillon <tr> 348b485838SMatthew Dillon <th>Polling:</th> 358b485838SMatthew Dillon <td id="polling"></td> 368b485838SMatthew Dillon </tr> 378b485838SMatthew Dillon <tr> 388b485838SMatthew Dillon <th>Kickoff:</th> 398b485838SMatthew Dillon <td id="kickoff"></td> 408b485838SMatthew Dillon </tr> 418b485838SMatthew Dillon </table> 428b485838SMatthew Dillon </div> 438b485838SMatthew Dillon </td> 448b485838SMatthew Dillon <td> 458b485838SMatthew Dillon <div id="stats"> 468b485838SMatthew Dillon <table> 478b485838SMatthew Dillon <thead> 488b485838SMatthew Dillon <tr> 498b485838SMatthew Dillon <th>Total</th> 508b485838SMatthew Dillon <th>Built</th> 51*51705b28SAntonio Huete Jimenez <th>Meta</th> 528b485838SMatthew Dillon <th>Failed</th> 538b485838SMatthew Dillon <th>Ignored</th> 548b485838SMatthew Dillon <th>Skipped</th> 558b485838SMatthew Dillon <th>Remaining</th> 568b485838SMatthew Dillon </tr> 578b485838SMatthew Dillon </thead> 588b485838SMatthew Dillon <tbody> 598b485838SMatthew Dillon <tr> 608b485838SMatthew Dillon <td id="stats_queued" class="queued" onclick="filter('')" title="Clear search filter"></td> 618b485838SMatthew Dillon <td id="stats_built" class="built" onclick="filter('built')" title="Click to filter for built packages"></td> 62*51705b28SAntonio Huete Jimenez <td id="stats_meta" class="meta" onclick="filter('meta')" title="Click to filter for meta packages"></td> 638b485838SMatthew Dillon <td id="stats_failed" class="failed" onclick="filter('failed')" title="Click to filter for build failures"></td> 648b485838SMatthew Dillon <td id="stats_ignored" class="ignored" onclick="filter('ignored')" title="Click to filter for ignored ports"></td> 658b485838SMatthew Dillon <td id="stats_skipped" class="skipped" onclick="filter('skipped')" title="Click to filter for skipped ports"></td> 668b485838SMatthew Dillon <td id="stats_remains" class="remains"></td> 678b485838SMatthew Dillon </tr> 688b485838SMatthew Dillon </tbody> 698b485838SMatthew Dillon </table> 708b485838SMatthew Dillon </div> 718b485838SMatthew Dillon <div id="stress"> 728b485838SMatthew Dillon <table> 738b485838SMatthew Dillon <thead> 748b485838SMatthew Dillon <tr> 758b485838SMatthew Dillon <th>Load</th> 768b485838SMatthew Dillon <th>Swapinfo</th> 778b485838SMatthew Dillon <th>Elapsed</th> 788b485838SMatthew Dillon <th>Pkg/hour</th> 798b485838SMatthew Dillon <th title="Packages build rate over last 500 seconds" id="impulse_label">Impulse</th> 808b485838SMatthew Dillon </tr> 818b485838SMatthew Dillon </thead> 828b485838SMatthew Dillon <tbody> 838b485838SMatthew Dillon <tr> 848b485838SMatthew Dillon <td id="stats_load"></td> 858b485838SMatthew Dillon <td id="stats_swapinfo"></td> 868b485838SMatthew Dillon <td id="stats_elapsed"></td> 878b485838SMatthew Dillon <td id="stats_pkghour"></td> 888b485838SMatthew Dillon <td id="stats_impulse"></td> 898b485838SMatthew Dillon </tr> 908b485838SMatthew Dillon </tbody> 918b485838SMatthew Dillon </table> 928b485838SMatthew Dillon </div> 938b485838SMatthew Dillon </td> 948b485838SMatthew Dillon </tr> 958b485838SMatthew Dillon </table> 968b485838SMatthew Dillon </div><!-- #header --> 978b485838SMatthew Dillon <div id="main"> 988b485838SMatthew Dillon <div id="builders_zone_2"> 998b485838SMatthew Dillon <table class="builders_table" id="builders_body"> 1008b485838SMatthew Dillon <thead class="builders"> 1018b485838SMatthew Dillon <tr> 1028b485838SMatthew Dillon <td>ID</td> 1038b485838SMatthew Dillon <td>Duration</td> 1048b485838SMatthew Dillon <td>Build Phase</td> 1058b485838SMatthew Dillon <td>Origin</td> 1068b485838SMatthew Dillon <td>Lines</td> 1078b485838SMatthew Dillon </tr> 1088b485838SMatthew Dillon </thead> 1098b485838SMatthew Dillon <tbody class="builders"></tbody> 1108b485838SMatthew Dillon </table> 1118b485838SMatthew Dillon </div> 1128b485838SMatthew Dillon 1138b485838SMatthew Dillon <div id="report"> 1148b485838SMatthew Dillon <table id="report_table"> 1158b485838SMatthew Dillon <thead> 1168b485838SMatthew Dillon <tr> 1178b485838SMatthew Dillon <th title="Click on number to search on origin">No.</th> 1188b485838SMatthew Dillon <th>Elapsed</th> 1198b485838SMatthew Dillon <th>ID</th> 1208b485838SMatthew Dillon <th>Result</th> 1218b485838SMatthew Dillon <th>Origin</th> 1228b485838SMatthew Dillon <th>Information</th> 1238b485838SMatthew Dillon <th>Skip</th> 1248b485838SMatthew Dillon <th>Duration</th> 1258b485838SMatthew Dillon </tr> 1268b485838SMatthew Dillon </thead> 1278b485838SMatthew Dillon <tbody id="report_body"></tbody> 1288b485838SMatthew Dillon </table> 1298b485838SMatthew Dillon </div> 1308b485838SMatthew Dillon </div> 1318b485838SMatthew Dillon 1328b485838SMatthew Dillon <div id="footer"> 1338b485838SMatthew Dillon <div id="nav"> 1348b485838SMatthew Dillon Progress 1358b485838SMatthew Dillon </div> 1368b485838SMatthew Dillon <div id="progress"> 1378b485838SMatthew Dillon <canvas id="progressbar" width=952 height=22></canvas> 1388b485838SMatthew Dillon </div> 1398b485838SMatthew Dillon </div> 1408b485838SMatthew Dillon </body> 1418b485838SMatthew Dillon</html> 142