|
|
|
@ -656,6 +656,76 @@ function mysqlCommonFuncFpkInfo(){ |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function mysqlCommonFuncLockSQL(){ |
|
|
|
|
function renderSQL(){ |
|
|
|
|
var sid = mysqlGetSid(); |
|
|
|
|
myPostCBN('get_lock_sql',{'sid':sid} ,function(rdata){ |
|
|
|
|
var data = rdata.data; |
|
|
|
|
if (data['status']){ |
|
|
|
|
var items = data.data; |
|
|
|
|
var tbody = ''; |
|
|
|
|
for (var i = 0; i < items.length; i++) { |
|
|
|
|
var t = '<tr>'; |
|
|
|
|
t += '<td>'+items[i]['table_schema']+'</td>'; |
|
|
|
|
t += '<td>'+items[i]['table_name']+'</td>'; |
|
|
|
|
t += '</tr>'; |
|
|
|
|
tbody += t; |
|
|
|
|
} |
|
|
|
|
$('#mysql_data_id tbody').html(tbody); |
|
|
|
|
} else { |
|
|
|
|
layer.msg(data.msg,{icon:2}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
layer.open({ |
|
|
|
|
type: 1, |
|
|
|
|
title: "查看当前锁阻塞的SQL", |
|
|
|
|
area: ['800px', '400px'], |
|
|
|
|
closeBtn: 1, |
|
|
|
|
shadeClose: false, |
|
|
|
|
content: '<div class="bt-form pd20 divtable taskdivtable">\ |
|
|
|
|
<table class="table table-hover" id="mysql_data_id">\ |
|
|
|
|
<thead>\ |
|
|
|
|
<th style="width:100px;">库名</th>\ |
|
|
|
|
<th style="width:50px;">表名</th>\ |
|
|
|
|
</thead>\ |
|
|
|
|
<tbody></tbody>\ |
|
|
|
|
</table>\ |
|
|
|
|
</div>', |
|
|
|
|
success:function(i,l){ |
|
|
|
|
renderSQL(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function mysqlCommonFuncDeadlockInfo(){ |
|
|
|
|
|
|
|
|
|
function renderSQL(){ |
|
|
|
|
var sid = mysqlGetSid(); |
|
|
|
|
myPostCBN('get_deadlock_info',{'sid':sid} ,function(rdata){ |
|
|
|
|
var data = rdata.data; |
|
|
|
|
$('#info_log').html(data.data); |
|
|
|
|
var ob = document.getElementById('info_log'); |
|
|
|
|
ob.scrollTop = ob.scrollHeight;
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
layer.open({ |
|
|
|
|
type: 1, |
|
|
|
|
title: "查看死锁信息", |
|
|
|
|
area: ['800px', '400px'], |
|
|
|
|
closeBtn: 1, |
|
|
|
|
shadeClose: false, |
|
|
|
|
content: '<div class="bt-form pd15">\ |
|
|
|
|
<textarea readonly="" style="margin: 0px;height: 330px;width: 100%;background-color: #333;color:#fff; padding:0 5px" id="info_log"></textarea>\ |
|
|
|
|
</div>', |
|
|
|
|
success:function(i,l){ |
|
|
|
|
renderSQL(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function mysqlCommonFunc(){ |
|
|
|
|
$('#mysql_common').unbind('click').click(function(){ |
|
|
|
|
layer.open({ |
|
|
|
@ -671,6 +741,8 @@ function mysqlCommonFunc(){ |
|
|
|
|
<button style="margin-bottom: 8px;" id="mysql_table_info" type="button" class="btn btn-default btn-sm">统计库里每个表的大小</button>\ |
|
|
|
|
<button style="margin-bottom: 8px;" id="mysql_conn_count" type="button" class="btn btn-default btn-sm">查看应用端IP连接数总和</button>\ |
|
|
|
|
<button style="margin-bottom: 8px;" id="mysql_fpk_info" type="button" class="btn btn-default btn-sm">快速找出没有主键的表</button>\ |
|
|
|
|
<button style="margin-bottom: 8px;" id="mysql_lock_sql" type="button" class="btn btn-default btn-sm">查看当前锁阻塞的SQL</button>\ |
|
|
|
|
<button style="margin-bottom: 8px;" id="mysql_deadlock_info" type="button" class="btn btn-default btn-sm">查看死锁信息</button>\ |
|
|
|
|
</div>', |
|
|
|
|
success:function(i,l){ |
|
|
|
|
$('#mysql_top_nsql').click(function(){ |
|
|
|
@ -696,6 +768,14 @@ function mysqlCommonFunc(){ |
|
|
|
|
$('#mysql_fpk_info').click(function(){ |
|
|
|
|
mysqlCommonFuncFpkInfo(); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
$('#mysql_lock_sql').click(function(){ |
|
|
|
|
mysqlCommonFuncLockSQL(); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
$('#mysql_deadlock_info').click(function(){ |
|
|
|
|
mysqlCommonFuncDeadlockInfo(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|