| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8"> |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
| <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> |
| <title>MeDICINE Dashboard</title> |
| |
| <!-- Bootstrap --> |
| <!--<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">--> |
| <link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/flatly/bootstrap.min.css" rel="stylesheet" integrity="sha384-+ENW/yibaokMnme+vBLnHMphUYxHs34h9lpdbSLuAwGkOKFRl4C34WkjazBtb7eT" crossorigin="anonymous"> |
| |
| <link href="css/main.css" rel="stylesheet"> |
| |
| <!-- jQuery --> |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js" type="text/javascript"></script> |
| <!--<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.jss" type="text/javascript"></script>--> |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/bootbox.js/4.4.0/bootbox.min.js" type="text/javascript"></script> |
| |
| <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> |
| <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
| <!--[if lt IE 9]> |
| <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> |
| <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> |
| <![endif]--> |
| |
| <script src="js/main.js" type="text/javascript"></script> |
| </head> |
| |
| <body> |
| |
| <div id="page-top"> |
| <div class="row"> |
| <div class="col-sm-8"><h1>MeDICINE Dashboard</h1></div> |
| <div class="col-sm-4" id="logo"><a href="http://sonata-nfv.eu" target="_blank"><img src="img/SONATA_new.png" alt="SONATA Logo" width="252" height="70"></a></div> |
| </div> |
| |
| <nav class="navbar navbar-default"> |
| <div class="container-fluid"> |
| <!-- Brand and toggle get grouped for better mobile display --> |
| <div class="navbar-header"> |
| <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false"> |
| <span class="sr-only">Toggle navigation</span> |
| <span class="icon-bar"></span> |
| <span class="icon-bar"></span> |
| <span class="icon-bar"></span> |
| </button> |
| </div> |
| |
| <!-- Collect the nav links, forms, and other content for toggling --> |
| <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> |
| <div class="navbar-form navbar- navbar-btn btn-group" role="group" aria-label="category"> |
| <!--<button type="button" class="btn btn-default active" id="btn_tab_pop">Datacenter List</button>--> |
| <!--<button type="button" class="btn btn-default" id="btn_tab_container">Container List</button>--> |
| <!--<button type="button" class="btn btn-default" id="btn_tab_other">Other</button> --> |
| </div> |
| <form class="navbar-form navbar-right"> |
| <div class="input-group"> |
| <span class="input-group-addon">http://</span> |
| <input type="text" class="form-control" placeholder="api-url.or.ip" value="sonata-emulator.cs.upb.de:5001" id="text_api_host" data-provide="typeahead" size="30"> |
| </div> |
| <button type="button" class="btn btn-success" id="btn_connect">Connect <span class="glyphicon glyphicon-play-circle"></span></button> |
| <button type="button" class="btn btn-danger disabled" id="btn_disconnect">Disconnect <span class="glyphicon glyphicon-off"></span></button> |
| </form> |
| </div><!-- /.navbar-collapse --> |
| </div><!-- /.container-fluid --> |
| </nav> |
| </div> |
| <div id="content"> |
| |
| |
| <div class="panel panel-primary"> |
| <!-- Default panel contents --> |
| <div class="panel-heading"><span>Emulated Datacenters</span> <span class="badge" id="lbl_datacenter_count">0</span><span class="pull-right" id="lbl_lateness_datacenter">Lateness: -</span></div> |
| <!-- Table --> |
| <table class="table table-striped table-hover" id="table_datacenter"> |
| </table> |
| </div> |
| |
| <div class="spacer"> </div> |
| |
| <div class="panel panel-primary"> |
| <!-- Default panel contents --> |
| <div class="panel-heading"><span>Running Containers</span> <span class="badge" id="lbl_container_count">0</span><span class="pull-right" id="lbl_lateness_container">Lateness: -</span></div> |
| <!-- Table --> |
| <table class="table table-striped table-hover" id="table_container"> |
| </table> |
| </div> |
| </div> |
| |
| <footer class="footer text-center small">(c) 2017 by SONATA Consortium and Paderborn University</footer> |
| |
| |
| </body> |
| |
| </html> |