forked from jly8866/archer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
diagnosis.html
418 lines (405 loc) · 19.2 KB
/
diagnosis.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
{% extends "base.html" %}
{% block content %}
<!-- 自定义操作按钮-->
<div id="process-toolbar" class="btn-group right" style="display:none;">
<button id="kill_process" class="btn btn-default navbar-btn" type="button">终止会话</button>
</div>
<!-- Nav tabs -->
<ul id="nav-tabs" class="nav nav-tabs" role="tablist">
<li id="process_tab" class="active">
<a href="#process" role="tab" data-toggle="tab">进程状态</a>
</li>
<li id="space_tab">
<a href="#space" role="tab" data-toggle="tab">Top表空间</a>
</li>
<div class="form-inline pull-right">
<div class="form-group">
<select id=cluster_name class="form-control selectpicker" name="cluster_name_list"
data-live-search="true">
<option value="is-empty" disabled="" selected="selected">请选择集群</option>
{% for cluster_name in cluster_name_list %}
<option value="{{ cluster_name }}">{{ cluster_name }}</option>
{% endfor %}
</select>
</div>
<div id="command-div" class="form-group">
<select id="command" class="form-control selectpicker" name="command_type">
<option value="is-empty" disabled="">command类型</option>
<option value="All">All</option>
<option value="Query" selected="selected">Query</option>
<option value="Not Sleep">Not Sleep</option>
</select>
</div>
</div>
</ul>
<!-- Tab panes -->
<div id="tab-content" class="tab-content">
<!-- 进程状态的表格-->
<div id="process" role="tabpanel" class="tab-pane fade in active table-responsive">
<table id="process-list" data-toggle="table" class="table table-hover"
style="table-layout:inherit;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">
</table>
</div>
<!-- Top表空间的表格-->
<div id="space" role="tabpanel" class="tab-pane fade table-responsive">
<table id="tablespace-list" data-toggle="table" class="table table-hover"
style="table-layout:inherit;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;">
</table>
</div>
</div>
<!-- 配置信息确认 -->
<div class="modal fade" id="killComfirm">
<div class="modal-dialog">
<div class="modal-content message_align">
<div class="modal-header ">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
<h4 class="modal-title text-danger">确定要终止所选会话吗?</h4>
</div>
<div class="modal-body">
<input type="text" id="request_params" hidden>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-info" data-dismiss="modal">取消</button>
<button type="button" onclick="kill_session()" class="btn btn-danger" data-dismiss="modal">确定终止
</button>
</div>
</div>
</div>
</div>
{% endblock content %}
{% block js %}
{% load staticfiles %}
<script src="{% static 'bootstrap-table/js/bootstrap-table-export.min.js' %}"></script>
<script src="{% static 'bootstrap-table/js/tableExport.min.js' %}"></script>
<script src="{% static 'dist/js/sql-formatter.min.js' %}"></script>
<script>
// 问题诊断--进程列表
function get_process_list() {
if ($("#cluster_name").val()) {
//采取异步请求
//初始化table
$('#process-list').bootstrapTable('destroy').bootstrapTable({
method: 'post',
contentType: "application/x-www-form-urlencoded",
url: "/process_status/",
striped: true, //是否显示行间隔色
cache: false, //是否使用缓存,默认为true,所以一般情况下需要设置一下这个属性(*)
pagination: true, //是否显示分页(*)
sortable: true, //是否启用排序
sortOrder: "desc", //排序方式
sortName: 'time', //排序字段
sidePagination: "client", //分页方式:client客户端分页,server服务端分页(*)
pageNumber: 1, //初始化加载第一页,默认第一页,并记录
pageSize: 30, //每页的记录行数(*)
pageList: [20, 30, 50, 100], //可供选择的每页的行数(*)
search: false, //是否显示表格搜索
strictSearch: false, //是否全匹配搜索
showColumns: true, //是否显示所有的列(选择显示的列)
showRefresh: true, //是否显示刷新按钮
showExport: true,
exportDataType: "all",
minimumCountColumns: 2, //最少允许的列数
clickToSelect: true, //是否启用点击选中行
uniqueId: "id", //每一行的唯一标识,一般为主键列
showToggle: true, //是否显示详细视图和列表视图的切换按钮
cardView: false, //是否显示详细视图
detailView: true, //是否显示父子表
//格式化详情
detailFormatter: function (index, row) {
var html = [];
$.each(row, function (key, value) {
if (key === 'info') {
var sql = window.sqlFormatter.format(value);
//替换所有的换行符
sql = sql.replace(/\r\n/g, "<br>");
sql = sql.replace(/\n/g, "<br>");
//替换所有的空格
sql = sql.replace(/\s/g, " ");
html.push('<span>' + sql + '</span>');
}
});
return html.join('');
},
locale: 'zh-CN', //本地化
toolbar: "#process-toolbar", //指明自定义的toolbar
queryParamsType: 'limit',
//请求服务数据时所传参数
queryParams: function (params) {
return {
cluster_name: $("#cluster_name").val(),
command_type: $("#command").val()
}
},
columns: [{
title: '',
field: 'checkbox',
checkbox: true
}, {
title: 'THEEAD ID',
field: 'id'
}, {
title: 'USER',
field: 'user'
}, {
title: 'HOST',
field: 'host'
}, {
title: 'DATABASE',
field: 'db'
}, {
title: 'TIME(s)',
field: 'time',
sortable: true
}, {
title: 'COMMAND',
field: 'command'
}, {
title: 'STATE',
field: 'state'
}, {
title: 'INFO',
field: 'info',
formatter: function (value, row, index) {
if (value.length > 50) {
var sql = value.substr(0, 50) + '...';
return sql;
}
else {
return value
}
}
}],
onLoadSuccess: function () {
},
onLoadError: function () {
alert("数据加载失败!");
},
onSearch: function (e) {
//传搜索参数给服务器
queryParams(e)
},
responseHandler: function (res) {
//在ajax获取到数据,渲染表格之前,修改数据源
return res;
}
});
}
}
// 问题诊断--表空间列表
function get_space_list() {
if ($("#cluster_name").val()) {
//初始化table
$('#tablespace-list').bootstrapTable('destroy').bootstrapTable({
method: 'post',
contentType: "application/x-www-form-urlencoded",
url: "/sapce_status/",
striped: true, //是否显示行间隔色
cache: false, //是否使用缓存,默认为true,所以一般情况下需要设置一下这个属性(*)
pagination: true, //是否显示分页(*)
sortable: true, //是否启用排序
sortName: 'total_size',
sortOrder: "desc", //排序方式
sidePagination: "client", //分页方式:client客户端分页,server服务端分页(*)
pageNumber: 1, //初始化加载第一页,默认第一页,并记录
pageSize: 30, //每页的记录行数(*)
pageList: [20, 30, 50, 100], //可供选择的每页的行数(*)
search: false, //是否显示表格搜索
strictSearch: false, //是否全匹配搜索
showColumns: true, //是否显示所有的列(选择显示的列)
showRefresh: true, //是否显示刷新按钮
minimumCountColumns: 2, //最少允许的列数
clickToSelect: true, //是否启用点击选中行
uniqueId: "id", //每一行的唯一标识,一般为主键列
showToggle: true, //是否显示详细视图和列表视图的切换按钮
showExport: true,
exportDataType: "all",
cardView: false, //是否显示详细视图
detailView: false, //是否显示父子表
locale: 'zh-CN', //本地化
toolbar: "#toolbar", //指明自定义的toolbar
queryParamsType: 'limit',
//请求服务数据时所传参数
queryParams: function (params) {
return {
cluster_name: $("#cluster_name").val()
}
},
columns: [{
title: '数据库',
field: 'table_schema'
}, {
title: '表名',
field: 'table_name'
}, {
title: '存储引擎',
field: 'engine'
}, {
title: '总空间(MB)',
field: 'total_size',
sortable: true
}, {
title: '行数',
field: 'table_rows',
sortable: true
}, {
title: '数据空间(MB)',
field: 'data_size',
sortable: true
}, {
title: '索引空间(MB)',
field: 'index_size',
sortable: true
}, {
title: '碎片空间(MB)',
field: 'data_free',
sortable: true
}, {
title: '碎片率(%)',
field: 'pct_free',
sortable: true
}],
onLoadSuccess: function () {
},
onLoadError: function () {
alert("数据加载失败!");
},
onSearch: function (e) {
//传搜索参数给服务器
queryParams(e)
},
responseHandler: function (res) {
//在ajax获取到数据,渲染表格之前,修改数据源
return res;
}
});
}
}
//点击终止会话按钮弹出确认框,并且构建终止会话请求
$(function () {
$("#kill_process").click(function () {
var AllSelections = $("#process-list").bootstrapTable('getSelections');
if (AllSelections.length > 0) {
//获取选择的线程id
var AllSelectionIds = [];
for (var i = 0; i < AllSelections.length; i++) {
AllSelectionIds.push(AllSelections[i]['id'])
}
var cluster_name = $("#cluster_name").val();
//发送请求构造会话数据
$.ajax({
type: "post",
url: "/create_kill_session/",
dataType: "json",
data: {
cluster_name: cluster_name,
ThreadIDs: JSON.stringify(AllSelectionIds)
},
traditional: true,
complete: function () {
},
success: function (data) {
if (data.status === 0) {
var result = data.data;
//给对话框赋值
$("#request_params").val(result);
$("#kill_sql").text(result);
//打开对话框
$("#killComfirm").modal();
}
else {
alert("status: " + data.status + "\nmsg: " + data.msg);
}
}
})
}
else {
alert("请先选择要终止的会话")
}
});
});
//终止会话
function kill_session() {
var cluster_name = $("#cluster_name").val();
var request_params = $("#request_params").val();
if (request_params) {
//发送请求构造会话数据
$.ajax({
type: "post",
url: "/kill_session/",
dataType: "json",
data: {
cluster_name: cluster_name,
request_params: request_params
},
traditional: true,
complete: function () {
//刷新页面
get_process_list();
$("#command-div").show();
$("#process-toolbar").show();
},
success: function (data) {
if (data.status === 0) {
}
}
})
}
else {
alert("没有需要被终止的会话")
}
}
//如果已选择cluster_name,进入页面自动填充,并且重置激活id
$(document).ready(function () {
sessionStorage.setItem('diagnosis_active_li_id', 'process_tab');
if (sessionStorage.getItem('diagnosis_cluster_name')) {
$("#cluster_name").val(sessionStorage.getItem('diagnosis_cluster_name'));
get_process_list();
$("#command-div").show();
$("#process-toolbar").show();
}
}
);
//tab切换,保留当前激活的标签id
$(function () {
$("#nav-tabs").on('shown.bs.tab', "li", function (e) {
var active_li_id = $(e.target).parents().attr('id');
sessionStorage.setItem('diagnosis_active_li_id', active_li_id);
//当前激活的标签id
if ($("#cluster_name").val()) {
if (active_li_id === 'process_tab') {
get_process_list();
$("#command-div").show();
$("#process-toolbar").show();
}
else if (active_li_id === 'space_tab') {
get_space_list();
$("#command-div").hide();
$("#process-toolbar").hide();
}
}
});
});
//集群变动时保存集群信息
$("#cluster_name").change(function () {
sessionStorage.setItem('diagnosis_cluster_name', $("#cluster_name").val());
var active_li_id = sessionStorage.getItem('diagnosis_active_li_id');
if (active_li_id === 'process_tab') {
get_process_list();
$("#command-div").show();
$("#process-toolbar").show();
}
else if (active_li_id === 'space_tab') {
get_space_list();
$("#command-div").hide();
$("#process-toolbar").hide();
}
});
//请求类型变动时自动刷新
$("#command").change(function () {
get_process_list();
$("#command-div").show();
$("#process-toolbar").show();
});
</script>
{% endblock %}