11 lines
294 B
JavaScript
11 lines
294 B
JavaScript
'use strict';
|
|
'require form';
|
|
|
|
return L.Class.extend({
|
|
title: _('CPU Context Switches Plugin Configuration'),
|
|
description: _('This plugin collects statistics about the processor context switches.'),
|
|
|
|
configSummary: function(section) {
|
|
return _('Context switch monitoring enabled');
|
|
}
|
|
});
|