代码拉取完成,页面将自动刷新
同步操作将从 py哥/mongo_slowquery 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>慢SQL执行时间统计图</title>
<script src="js/echarts.common.min.js"></script>
<script src="js/jquery-3.3.1.min.js"></script>
</head>
<body>
<!--
<script type="text/javascript">
$(document).ready(function () {
if(location.href.indexOf("#reloaded")==-1){
location.href=location.href+"#reloaded";
location.reload();
}
})
</script>
-->
<!-- <h1 align='center' class='STYLE2'>慢SQL执行时间</h1>
<hr /> -->
<!-- <div id="main" style="width: 1600px;height:400px"></div> -->
<div id="main" style="height:400px"></div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('main'));
var arr1=[],arr2=[];
function arrTest(){
$.ajax({
type:"post",
async:false,
url:"get_graph_data.php",
data:{},
dataType:"json",
success:function(result){
if (result) {
for (var i = 0; i < result.length; i++) {
arr1.push(result[i].last_time);
arr2.push(result[i].exec_time);
}
}
}
})
return arr1,arr2;
}
arrTest();
var option = {
title: {
text: '慢查询分析',
//backgroundColor: 'FFFFFF'
},
tooltip: {
trigger: 'axis'
//show: true
},
legend: {
data:['慢SQL执行时间']
},
xAxis : [
{
type : 'category',
data : arr1
}
],
yAxis : [
{
type : 'value',
axisLabel: {
formatter:'{value}(秒)'
}
}
],
dataZoom: [
{
type: 'slider',
start: 100,
end: 80
}
],
series : [
{
"name":"慢SQL执行时间",
//"type":"bar",
"type":"line",
"smooth": "true",
"data":arr2,
stack: '秒',
areaStyle: {
normal: {
color: '#48A43F' //改变区域颜色
}
},
itemStyle : {
normal : {
color:'#48A43F',
lineStyle: {
color: '#3300FF',
width: 3,
}}}
}
]
};
// 为echarts对象加载数据
myChart.setOption(option);
// }
</script>
</body>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。