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
|
'use strict';
'require baseclass';
'require fs';
'require form';
return baseclass.extend({
title: _('Disk Plugin Configuration'),
description: _('The disk plugin collects detailed usage statistics for selected partitions or whole disks.'),
addFormOptions(s) {
let o;
o = s.option(form.Flag, 'enable', _('Enable this plugin'));
o = s.option(form.DynamicList, 'Disks', _('Monitor disks and partitions'),
_('When none selected, all disks will be monitored.'));
o.depends('enable', '1');
o.load = function(section_id) {
return fs.trimmed('/proc/partitions').then(L.bind(function(str) {
const lines = (str || '').split(/\n/);
for (let line of lines) {
const m = line.match(/^ +[0-9]+ +[0-9]+ +[0-9]+ (\S+)$/);
if (m)
this.value(m[1]);
}
return this.super('load', [section_id]);
}, this));
};
o = s.option(form.Flag, 'IgnoreSelected', _('Monitor all except specified'));
o.depends('enable', '1');
},
configSummary(section) {
const disks = L.toArray(section.Disks);
const invert = section.IgnoreSelected == '1';
if (disks.length == 0)
return _('Monitoring all disks');
else if (invert)
return N_(disks.length, 'Monitoring all but one disk', 'Monitoring all but %d disks').format(disks.length);
else
return N_(disks.length, 'Monitoring one disk', 'Monitoring %d disks').format(disks.length);
}
});
|