github.com/rohankumardubey/aresdb@v0.0.2-0.20190517170215-e54e3ca06b9c/api/ui/debug/redologs.html (about) 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Redologs Viewer</title> 6 7 <!-- stylesheets --> 8 <link rel="stylesheet" href="../node_modules/datatables.net-dt/css/jquery.dataTables.css" rel="stylesheet" 9 type="text/css"/> 10 <link rel="stylesheet" href="../node_modules/select2/dist/css/select2.css"/> 11 <link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css"/> 12 13 <!-- script files --> 14 <script src="../node_modules/jquery/dist/jquery.min.js"></script> 15 <script src="../node_modules/datatables.net-dt/js/dataTables.dataTables.min.js" type="text/javascript"></script> 16 <script src="../node_modules/select2/dist/js/select2.min.js" type="text/javascript"></script> 17 <script src="js/utils.js"></script> 18 <script src="js/redologs.js"></script> 19 20 <script type='text/javascript'> 21 $(document).ready(function () { 22 initRedoLogsPage() 23 }); 24 </script> 25 </head> 26 <body> 27 <table> 28 <tr> 29 <table id="selectors-panel"> 30 <td> 31 <label for="table-selector"> 32 Choose Table 33 <br/> 34 <select id="table-selector" class="js-example-basic-single js-states form-control"> 35 </select> 36 </label> 37 </td> 38 <td> 39 <label for="shard-selector"> 40 Choose Shard 41 <br/> 42 <select id="shard-selector" class="js-example-basic-single js-states form-control"> 43 </select> 44 </label> 45 </td> 46 <td> 47 <label for="redologs-selector"> 48 Choose Redo Log 49 <select id="redologs-selector" class="js-example-basic-single js-states form-control"> 50 </select> 51 </label> 52 </td> 53 <td> 54 <label for="upsertbatch-selector"> 55 Choose Upsert Batch 56 <select id="upsertbatch-selector" class="js-example-basic-single js-states form-control"> 57 </select> 58 </label> 59 </td> 60 </table> 61 </tr> 62 <tr> 63 <table id="upsertbatch-table"></table> 64 </tr> 65 </table> 66 </body> 67 </html>