2013-01-16 20:31:01 -05:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<!--
|
2018-07-11 12:55:18 -04:00
|
|
|
~ 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
|
2013-01-16 20:31:01 -05:00
|
|
|
~
|
2018-07-11 12:55:18 -04:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-16 20:31:01 -05:00
|
|
|
~
|
2018-07-11 12:55:18 -04: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.
|
2013-01-16 20:31:01 -05:00
|
|
|
-->
|
|
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/html">
|
|
|
|
<head>
|
2013-10-03 19:36:48 -04:00
|
|
|
<title>Druid Coordinator Console - Enable/Disable Datasources</title>
|
2013-01-16 20:31:01 -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"/>
|
2013-01-16 20:31:01 -05:00
|
|
|
|
|
|
|
<style type="text/css">@import "css/style.css";</style>
|
|
|
|
<style type="text/css">@import "css/jquery-ui-1.9.2.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>
|
2013-01-16 20:31:01 -05:00
|
|
|
<script type="text/javascript" src="js/jquery-ui-1.9.2.js"></script>
|
|
|
|
<script type="text/javascript" src="js/kill-0.0.1.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<div class="heading">Permanently Delete Segments</div>
|
|
|
|
|
|
|
|
<div id="select_datasource">
|
|
|
|
Select Data Source:
|
|
|
|
<select id="datasources">
|
|
|
|
<option></option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<p>Interval:</p>
|
|
|
|
<span><input type="text" name="interval" id="interval"/></span>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<button type="button" id="confirm">Confirm</button>
|
|
|
|
<div id="confirm_dialog" title="Confirm">
|
|
|
|
<p>Are you sure you want delete segments for this datasource and range? There is no going back!</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="error_dialog" title="Error!"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
2015-01-30 23:36:38 -05:00
|
|
|
</html>
|