mirror of https://github.com/apache/druid.git
47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Druid Master Console</title>
|
||
|
<link rel="shortcut icon" type="image/ico" href="images/favicon.ico">
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||
|
<meta name="Description" content="Druid Master Console Page"/>
|
||
|
|
||
|
<style type="text/css">@import "css/style.css";</style>
|
||
|
<style type="text/css">@import "css/demo_table.css";</style>
|
||
|
<style type="text/css">@import "css/index.css";</style>
|
||
|
|
||
|
<script type="text/javascript" src="js/underscore-1.2.2.js"></script>
|
||
|
<script type="text/javascript" src="js/jquery-1.7.js"></script>
|
||
|
<script type="text/javascript" src="js/jquery.dataTables-1.8.2.js"></script>
|
||
|
<script type="text/javascript" src="js/druidTable-0.0.1.js"></script>
|
||
|
<script type="text/javascript" src="js/tablehelper-0.0.1.js"></script>
|
||
|
<script type="text/javascript" src="js/handlers-0.0.1.js"></script>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
|
||
|
<div class="heading">Select View</div>
|
||
|
<a href="cluster.html">Full Cluster View</a> or
|
||
|
<select id="select_type">
|
||
|
<option value="servers">Servers</option>
|
||
|
<option value="segments">Segments</option>
|
||
|
<option value="datasources">DataSources</option>
|
||
|
</select>
|
||
|
|
||
|
<select id="select_view">
|
||
|
<option value="table">Table</option>
|
||
|
<option value="list">List</option>
|
||
|
<option value="raw">Raw JSON</option>
|
||
|
</select>
|
||
|
<button type="button" id="view_button">Submit</button>
|
||
|
|
||
|
<div class="heading">Selected Data</div>
|
||
|
<div class="loading">Loading segment data... this may take a few minutes</div>
|
||
|
<div id="selected_data"></div>
|
||
|
<div id="table_wrapper">
|
||
|
<table id="result_table"></table>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|