mirror of
https://github.com/apache/druid.git
synced 2025-02-10 12:05:00 +00:00
* Adding new web console. * fixed css * fix form height * fix typo * do import custom react-table css * added repo field so npm does not complain * ask travis for node 10 * move indexing-service/src/main/resources/indexer_static into web-console * fix resource names and paths * add licenses * fix exclude file * add licenses to misc files and tidy up * remove rebase marker * fix link * updated env variable name * tidy up licenses and surface errors * cleanup * remove unused code, fix missing await * TeamCity does not like the name aux * add more links to tasks view * rm pages * update gitignore * update readme to be accurate * make clean script * removed old console dependancy * update Jetty routes * add a comment for welcome files for coordinator * do not show inital notifaction for now * renamed overlord console back to console.html * fix coordinator console * rename coordinator-console.html to index.html
71 lines
2.6 KiB
HTML
71 lines
2.6 KiB
HTML
<!DOCTYPE HTML>
|
|
<!--
|
|
~ Licensed to the Apache Software Foundation (ASF) under one
|
|
~ or more contributor license agreements. See the NOTICE file
|
|
~ distributed with this work for additional information
|
|
~ regarding copyright ownership. The ASF licenses this file
|
|
~ to you 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
|
|
~
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
~
|
|
~ 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.
|
|
-->
|
|
|
|
<html>
|
|
<head>
|
|
<title>Druid Coordinator Console</title>
|
|
<link rel="shortcut icon" href="/favicon.png">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta name="Description" content="Druid Coordinator Console Page" />
|
|
|
|
<style type="text/css">@import "css/style.css";</style>
|
|
<style type="text/css">@import "css/demo_table.css";</style>
|
|
|
|
<script type="text/javascript" src="js/underscore-1.2.2.js"></script>
|
|
<script type="text/javascript" src="js/jquery-1.11.0.min.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/init-0.0.2.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
|
|
<div class="heading">Cluster Servers</div>
|
|
<div id="avg_server_metric"></div>
|
|
<div class="loading">Loading server data... this may take a few minutes</div>
|
|
<table id="servers"></table>
|
|
|
|
<div class="heading">Cluster Segments</div>
|
|
<div id="coordinator"></div>
|
|
<div class="loading">Loading segment data... this may take a few minutes</div>
|
|
<table id="segments"></table>
|
|
|
|
<!--<div class="heading">User Console</div>
|
|
<div>Selected Segments</div>
|
|
<div id="selected_segments"></div>
|
|
|
|
<div id="console">
|
|
<div id="move">
|
|
<form id="move_segment" action="" method="post">
|
|
Move Segment(s) to Server: <input type="text" name="to" class="to"/>
|
|
<input type="submit" value="Move" />
|
|
</form>
|
|
</div>
|
|
<!--<div id="drop">
|
|
<form id="drop_segment" action="" method="post">
|
|
<input type="submit" value="Drop Selected Segments" />
|
|
</form>
|
|
</div>
|
|
</div>-->
|
|
</div>
|
|
</body>
|
|
</html>
|