luci/applications/luci-app-statistics/htdocs/luci-static/resources/view/statistics/plugins/processes.js
Jo-Philipp Wich d4a475163e luci-app-statistics: clean and fix plugin configurations
- Remove redundant form flags
 - Fix various default values
 - Add some new collect options and remove options that do not exist anymore

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
2020-02-22 23:26:49 +01:00

26 lines
761 B
JavaScript

'use strict';
'require form';
return L.Class.extend({
title: _('Processes Plugin Configuration'),
description: _('The processes plugin collects information like cpu time, page faults and memory usage of selected processes.'),
addFormOptions: function(s) {
var o;
o = s.option(form.Flag, 'enable', _('Enable this plugin'));
o = s.option(form.DynamicList, 'Processes', _('Monitor processes'));
o.default = 'uhttpd dropbear dnsmasq';
o.depends('enable', '1');
},
configSummary: function(section) {
var processes = L.toArray(section.Processes);
if (processes.length)
return N_(processes.length, 'Monitoring one process', 'Monitoring %d processes').format(processes.length);
else
return _('Basic process monitoring enabled');
}
});