forked from smartloli/EFAK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed issues[smartloli#418] [smartloli#420] and add connect monitor
- Loading branch information
Showing
9 changed files
with
560 additions
and
393 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
203 changes: 203 additions & 0 deletions
203
kafka-eagle-web/src/main/webapp/media/js/main/topic/ksql.distributed.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,203 @@ | ||
$(document).ready(function () { | ||
var mime = 'text/x-mariadb'; | ||
// get mime type | ||
if (window.location.href.indexOf('mime=') > -1) { | ||
mime = window.location.href.substr(window.location.href.indexOf('mime=') + 5); | ||
} | ||
var sqlEditor = CodeMirror.fromTextArea(document.getElementById('code'), { | ||
mode: mime, | ||
indentWithTabs: true, | ||
smartIndent: true, | ||
lineNumbers: true, | ||
matchBrackets: true, | ||
autofocus: true, | ||
extraKeys: { | ||
"Alt-/": "autocomplete" | ||
} | ||
}); | ||
var logEditor = CodeMirror.fromTextArea(document.getElementById('job_info'), { | ||
mode: mime, | ||
indentWithTabs: true, | ||
smartIndent: true, | ||
lineNumbers: true, | ||
matchBrackets: true, | ||
autofocus: true, | ||
readOnly: true | ||
}); | ||
$('#result_tab li:eq(0) a').tab('show'); | ||
var triggerTask; | ||
function getProgress(jobId) { | ||
$.ajax({ | ||
type: 'get', | ||
dataType: 'json', | ||
url: '/shard/sub/scan/log/?jobId=' + jobId, | ||
success: function (datas) { | ||
console.log(datas) | ||
if (datas != null) { | ||
logEditor.setValue(datas.logs); | ||
logEditor.execCommand("goDocEnd"); | ||
} | ||
} | ||
}); | ||
if (logEditor.getValue().indexOf("Time taken:") > -1) { | ||
clearInterval(triggerTask); | ||
} | ||
} | ||
var offset = 0; | ||
function viewerTopics(sql, dataSets, jobId) { | ||
// var ret = JSON.parse(dataSets); | ||
var tabHeader = "<div class='panel-body table-responsive' id='div_children" + offset + "'><table id='result_children" + offset + "' class='table table-bordered table-hover' width='100%'><thead><tr>" | ||
var mData = []; | ||
var i = 0; | ||
for (var key in dataSets) { | ||
tabHeader += "<th>" + dataSets[key] + "</th>"; | ||
var obj = { | ||
mData: dataSets[key] | ||
}; | ||
mData.push(obj); | ||
} | ||
tabHeader += "</tr></thead></table></div>"; | ||
$("#result_textarea").append(tabHeader); | ||
if (offset > 0) { | ||
$("#div_children" + (offset - 1)).remove(); | ||
} | ||
|
||
$("#result_children" + offset).dataTable({ | ||
"searching": false, | ||
"bSort": false, | ||
"retrieve": true, | ||
"bLengthChange": false, | ||
"bProcessing": true, | ||
"bServerSide": true, | ||
"fnServerData": retrieveData, | ||
"sAjaxSource": '/topic/physics/commit/?sql=' + sql + '&jobId=' + jobId, | ||
"aoColumns": mData | ||
}); | ||
|
||
function retrieveData(sSource, aoData, fnCallback) { | ||
$.ajax({ | ||
"type": "get", | ||
"contentType": "application/json", | ||
"url": sSource, | ||
"dataType": "json", | ||
"data": { | ||
aoData: JSON.stringify(aoData) | ||
}, | ||
"success": function (data) { | ||
fnCallback(data) | ||
} | ||
}); | ||
} | ||
|
||
offset++; | ||
} | ||
|
||
$(document).on('click', 'button[id=ke_ksql_query]', function () { | ||
var sql = encodeURI(sqlEditor.getValue()); | ||
logEditor.setValue(""); | ||
var jobId = "job_id_" + new Date().getTime(); | ||
$.ajax({ | ||
type: 'get', | ||
dataType: 'json', | ||
url: '/topic/logical/commit/?sql=' + sql + '&jobId=' + jobId, | ||
success: function (datas) { | ||
if (datas != null) { | ||
if (datas.error) { | ||
logEditor.setValue(datas.msg); | ||
viewerTopicSqlHistory(); | ||
} else { | ||
triggerTask = setInterval(getProgress, 1000, jobId); | ||
viewerTopics(sql, datas.columns, jobId); | ||
} | ||
} | ||
} | ||
}); | ||
}); | ||
|
||
var historyOffset = 0; | ||
|
||
function viewerTopicSqlHistory() { | ||
var thList = [{ | ||
th: "ID", | ||
column: "id" | ||
}, { | ||
th: "User", | ||
column: "username" | ||
}, { | ||
th: "Host", | ||
column: "host" | ||
}, { | ||
th: "KSQL", | ||
column: "ksql" | ||
}, { | ||
th: "Status", | ||
column: "status" | ||
}, { | ||
th: "Spent", | ||
column: "spendTime" | ||
}, { | ||
th: "Created", | ||
column: "created" | ||
}]; | ||
var ksqlTabHeader = "<div class='panel-body table-responsive' id='div_ksql_children" + historyOffset + "'><table id='result_ksql_children" + historyOffset + "' class='table table-bordered table-hover' width='100%'><thead><tr>" | ||
var ksqlMData = []; | ||
var i = 0; | ||
for (var i = 0; i < thList.length; i++) { | ||
ksqlTabHeader += "<th>" + thList[i].th + "</th>"; | ||
var obj = { | ||
mData: thList[i].column | ||
}; | ||
ksqlMData.push(obj); | ||
} | ||
|
||
ksqlTabHeader += "</tr></thead></table></div>"; | ||
$("#ksql_history_result_div").append(ksqlTabHeader); | ||
if (historyOffset > 0) { | ||
$("#div_ksql_children" + (historyOffset - 1)).remove(); | ||
} else { | ||
$("#ksql_history_result0").remove(""); | ||
} | ||
|
||
$("#result_ksql_children" + historyOffset).dataTable({ | ||
"bSort": false, | ||
"retrieve": true, | ||
"bLengthChange": false, | ||
"bProcessing": true, | ||
"bServerSide": true, | ||
"fnServerData": retrieveData, | ||
"sAjaxSource": '/topic/sql/history/ajax', | ||
"aoColumns": ksqlMData | ||
}); | ||
|
||
function retrieveData(sSource, aoData, fnCallback) { | ||
$.ajax({ | ||
"type": "get", | ||
"contentType": "application/json", | ||
"url": sSource, | ||
"dataType": "json", | ||
"data": { | ||
aoData: JSON.stringify(aoData) | ||
}, | ||
"success": function (data) { | ||
fnCallback(data) | ||
} | ||
}); | ||
} | ||
|
||
historyOffset++; | ||
} | ||
|
||
$('a[data-toggle="tab"]').on('show.bs.tab', function (e) { | ||
if (e.target.id.indexOf("ke_ksql_history_textarea") > -1) { | ||
viewerTopicSqlHistory(); | ||
} | ||
}) | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.