summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2019-11-03 21:18:36 +0100
committerJo-Philipp Wich <jo@mein.io>2019-11-03 21:18:36 +0100
commitb2a46e131b778ae14156676de8daf8231ab8e151 (patch)
tree62180fe587dcf18431a83a00573ee567cf5233e4 /modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js
parentd5dff8f9a5ca85d197cbb6037f95053bc55941e5 (diff)
luci-mod-status: move processes.js to correct directory
Fixes: a43b1c646 ("luci-base, luci-mod-status: convert process status to client side view") Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js')
-rw-r--r--modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js86
1 files changed, 86 insertions, 0 deletions
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js
new file mode 100644
index 0000000000..b996b78ce5
--- /dev/null
+++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js
@@ -0,0 +1,86 @@
+'use strict';
+'require fs';
+'require ui';
+'require rpc';
+
+var callLuciProcessList = rpc.declare({
+ object: 'luci',
+ method: 'getProcessList',
+ expect: { result: [] }
+});
+
+return L.view.extend({
+ load: function() {
+ return callLuciProcessList();
+ },
+
+ handleSignal: function(signum, pid, ev) {
+ return fs.exec('/bin/kill', ['-%d'.format(signum), '%s'.format(pid)]).then(L.bind(function() {
+ return callLuciProcessList().then(L.bind(function(processes) {
+ this.updateTable('.table', processes);
+ }, this));
+ }, this)).catch(function(e) { ui.addNotification(null, E('p', e.message)) });
+ },
+
+ updateTable: function(table, processes) {
+ var rows = [];
+
+ processes.sort(function(a, b) {
+ return (a.PID - b.PID);
+ });
+
+ for (var i = 0; i < processes.length; i++) {
+ var proc = processes[i];
+
+ rows.push([
+ proc.PID,
+ proc.USER,
+ proc.COMMAND,
+ proc['%CPU'],
+ proc['%MEM'],
+ E('div', { 'class': 'nowrap' }, [
+ E('button', {
+ 'class': 'btn cbi-button-action',
+ 'click': ui.createHandlerFn(this, 'handleSignal', 1, proc.PID)
+ }, _('Hang Up')), ' ',
+ E('button', {
+ 'class': 'btn cbi-button-negative',
+ 'click': ui.createHandlerFn(this, 'handleSignal', 15, proc.PID)
+ }, _('Terminate')), ' ',
+ E('button', {
+ 'class': 'btn cbi-button-negative',
+ 'click': ui.createHandlerFn(this, 'handleSignal', 9, proc.PID)
+ }, _('Kill'))
+ ])
+ ]);
+ }
+
+ cbi_update_table(table, rows, E('em', _('No information available')));
+ },
+
+ render: function(processes) {
+ var v = E([], [
+ E('h2', _('Processes')),
+ E('div', { 'class': 'cbi-map-descr' }, _('This list gives an overview over currently running system processes and their status.')),
+
+ E('div', { 'class': 'table' }, [
+ E('div', { 'class': 'tr table-titles' }, [
+ E('div', { 'class': 'th' }, _('PID')),
+ E('div', { 'class': 'th' }, _('Owner')),
+ E('div', { 'class': 'th' }, _('Command')),
+ E('div', { 'class': 'th' }, _('CPU usage (%)')),
+ E('div', { 'class': 'th' }, _('Memory usage (%)')),
+ E('div', { 'class': 'th center' }, _('Actions'))
+ ])
+ ])
+ ]);
+
+ this.updateTable(v.lastElementChild, processes);
+
+ return v;
+ },
+
+ handleSaveApply: null,
+ handleSave: null,
+ handleReset: null
+});