2013-01-16 20:31:01 -05:00
|
|
|
$(document).ready(function() {
|
|
|
|
$("button").button();
|
|
|
|
|
|
|
|
$("#error_dialog").dialog({
|
|
|
|
autoOpen: false,
|
|
|
|
modal:true,
|
|
|
|
resizeable: false,
|
|
|
|
buttons: {
|
|
|
|
Ok : function() {
|
|
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#confirm_dialog").dialog({
|
|
|
|
autoOpen: false,
|
|
|
|
modal:true,
|
|
|
|
resizeable: false,
|
|
|
|
buttons: {
|
|
|
|
Yes : function() {
|
|
|
|
var selected = $('#datasources option:selected').text();
|
|
|
|
var interval = $('#interval').val();
|
|
|
|
$.ajax({
|
2013-02-01 17:08:52 -05:00
|
|
|
type: 'DELETE',
|
2014-01-20 16:05:05 -05:00
|
|
|
url:'/druid/coordinator/v1/datasources/' + selected +'?kill=true&interval=' + interval,
|
2013-01-16 20:31:01 -05:00
|
|
|
contentType:"application/json; charset=utf-8",
|
|
|
|
dataType:"json",
|
|
|
|
error: function(xhr, status, error) {
|
|
|
|
$("#confirm_dialog").dialog("close");
|
|
|
|
$("#error_dialog").html(xhr.responseText);
|
|
|
|
$("#error_dialog").dialog("open");
|
|
|
|
},
|
|
|
|
success: function(data, status, xhr) {
|
|
|
|
$("#confirm_dialog").dialog("close");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
Cancel: function() {
|
|
|
|
$(this).dialog("close");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2014-01-20 16:05:05 -05:00
|
|
|
$.getJSON("/druid/coordinator/v1/db/datasources?includeDisabled", function(data) {
|
2013-01-16 20:31:01 -05:00
|
|
|
$.each(data, function(index, datasource) {
|
|
|
|
$('#datasources').append($('<option></option>').attr("value", datasource).text(datasource));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#confirm").click(function() {
|
|
|
|
$("#confirm_dialog").dialog("open");
|
|
|
|
});
|
|
|
|
});
|