add a 'refresh' button to the performance tab of the admin panel

pull/1/head
ansuz 4 years ago
parent 19d82f1b3e
commit 112afc0de2

@ -66,6 +66,7 @@ define([
'cp-admin-support-init' 'cp-admin-support-init'
], ],
'performance': [ 'performance': [
'cp-admin-refresh-performance',
'cp-admin-performance-profiling', 'cp-admin-performance-profiling',
] ]
}; };
@ -931,50 +932,67 @@ define([
return; return;
}; };
var onRefreshPerformance = Util.mkEvent();
create['refresh-performance'] = function () {
var key = 'refresh-performance';
var btn = h('button.btn.btn-primary', Messages.oo_refresh);
var div = h('div.cp-admin-' + key + '.cp-sidebarlayout-element', btn);
$(btn).click(function () {
onRefreshPerformance.fire();
});
return $(div);
};
create['performance-profiling'] = function () { create['performance-profiling'] = function () {
var $div = makeBlock('performance-profiling'); var $div = makeBlock('performance-profiling');
var body = h('tbody'); var onRefresh = function () {
var body = h('tbody');
var table = h('table#cp-performance-table', [ var table = h('table#cp-performance-table', [
h('thead', [ h('thead', [
h('th', Messages.admin_performanceKeyHeading), h('th', Messages.admin_performanceKeyHeading),
h('th', Messages.admin_performanceTimeHeading), h('th', Messages.admin_performanceTimeHeading),
h('th', Messages.admin_performancePercentHeading), h('th', Messages.admin_performancePercentHeading),
]), ]),
body, body,
]); ]);
var appendRow = function (key, time, percent) {
console.log("[%s] %ss running time (%s%)", key, time, percent);
body.appendChild(h('tr', [ key, time, percent ].map(function (x) {
return h('td', x);
})));
};
var process = function (_o) {
var o = _o[0];
var sorted = Object.keys(o).sort(function (a, b) {
if (o[b] - o[a] <= 0) { return -1; }
return 1;
});
var total = 0;
sorted.forEach(function (k) { total += o[k]; });
sorted.forEach(function (k) {
var percent = Math.floor((o[k] / total) * 1000) / 10;
appendRow(k, o[k], percent);
});
};
$div.append(table); sFrameChan.query('Q_ADMIN_RPC', {
cmd: 'GET_WORKER_PROFILES',
}, function (e, data) {
if (e) { return void console.error(e); }
//console.info(data);
$div.find("table").remove();
var appendRow = function (key, time, percent) {
console.log("[%s] %ss running time (%s%)", key, time, percent);
body.appendChild(h('tr', [ key, time, percent ].map(function (x) {
return h('td', x);
})));
};
var process = function (_o) { process(data);
var o = _o[0]; $div.append(table);
var sorted = Object.keys(o).sort(function (a, b) {
if (o[b] - o[a] <= 0) { return -1; }
return 1;
});
var total = 0;
sorted.forEach(function (k) { total += o[k]; });
sorted.forEach(function (k) {
var percent = Math.floor((o[k] / total) * 1000) / 10;
appendRow(k, o[k], percent);
}); });
}; };
sFrameChan.query('Q_ADMIN_RPC', { onRefresh();
cmd: 'GET_WORKER_PROFILES', onRefreshPerformance.reg(onRefresh);
}, function (e, data) {
if (e) { return void console.error(e); }
//console.info(data);
process(data);
});
return $div; return $div;
}; };

Loading…
Cancel
Save