mirror of
https://github.com/openwrt/luci.git
synced 2026-04-15 19:01:56 +00:00
13 lines
307 B
JavaScript
13 lines
307 B
JavaScript
'use strict';
|
|
'require baseclass';
|
|
'require form';
|
|
|
|
return baseclass.extend({
|
|
title: _('CPU Context Switches Plugin Configuration'),
|
|
description: _('This plugin collects statistics about the processor context switches.'),
|
|
|
|
configSummary(section) {
|
|
return _('Context switch monitoring enabled');
|
|
}
|
|
});
|