2012-12-05 18:39:59 -05:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<!--
|
|
|
|
~ Druid - a distributed column store.
|
2015-01-30 23:36:38 -05:00
|
|
|
~ Copyright 2012 - 2015 Metamarkets Group Inc.
|
2012-12-05 18:39:59 -05:00
|
|
|
~
|
2015-01-30 23:36:38 -05:00
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
2012-12-05 18:39:59 -05:00
|
|
|
~
|
2015-01-30 23:36:38 -05:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2012-12-05 18:39:59 -05:00
|
|
|
~
|
2015-01-30 23:36:38 -05:00
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
2012-12-05 18:39:59 -05:00
|
|
|
-->
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
2013-10-03 19:36:48 -04:00
|
|
|
<title>Druid Coordinator Console</title>
|
2012-12-05 18:39:59 -05:00
|
|
|
<link rel="shortcut icon" type="image/ico" href="images/favicon.ico">
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
2013-10-03 19:36:48 -04:00
|
|
|
<meta name="Description" content="Druid Coordinator Console Page"/>
|
2012-12-05 18:39:59 -05:00
|
|
|
|
|
|
|
<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>
|
2014-01-31 15:37:37 -05:00
|
|
|
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
|
2012-12-05 18:39:59 -05:00
|
|
|
<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>
|
2013-03-06 13:38:40 -05:00
|
|
|
<script type="text/javascript" src="js/tablehelper-0.0.2.js"></script>
|
2014-01-31 15:37:37 -05:00
|
|
|
<script type="text/javascript" src="js/handlers-0.0.2.js"></script>
|
2012-12-05 18:39:59 -05:00
|
|
|
</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>
|
2015-01-30 23:36:38 -05:00
|
|
|
</html>
|