blob: fe046872e1764efdeb80b4517cf6aee9a72650f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
'use strict';
'require baseclass';
'require form';
return baseclass.extend({
title: _('Conntrack Plugin Configuration'),
description: _('The conntrack plugin collects statistics about the number of tracked connections.'),
configSummary(section) {
return _('Conntrack monitoring enabled');
}
});
|