blob: 4f16f204ed743d12f7701796a5c0e23faafecbcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
'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');
}
});
|