Merge pull request #1476 from laf/issue-1466

Added basic detection of Netonix
This commit is contained in:
Daniel Preussker
2015-07-19 18:52:38 +02:00
4 changed files with 189 additions and 0 deletions

View File

@@ -466,6 +466,17 @@ $config['os'][$os]['bad_if'][] = 'cpu';
$config['os'][$os]['over'][0]['graph'] = 'device_bits';
$config['os'][$os]['over'][0]['text'] = 'Device Traffic';
$os = 'netonix';
$config['os'][$os]['text'] = 'Netonix';
$config['os'][$os]['type'] = 'network';
$config['os'][$os]['icon'] = 'netonix';
$config['os'][$os]['over'][0]['graph'] = 'device_bits';
$config['os'][$os]['over'][0]['text'] = 'Device Traffic';
$config['os'][$os]['over'][1]['graph'] = 'device_processor';
$config['os'][$os]['over'][1]['text'] = 'CPU Usage';
$config['os'][$os]['over'][2]['graph'] = 'device_mempool';
$config['os'][$os]['over'][2]['text'] = 'Memory Usage';
// Juniper
$os = 'junos';
$config['os'][$os]['text'] = 'Juniper JunOS';