Merge pull request #3254 from barhom/juniper-ex2500

Added support for Juniper EX2500
This commit is contained in:
Daniel Preussker
2016-03-17 08:51:44 +00:00
2 changed files with 14 additions and 0 deletions
+7
View File
@@ -639,6 +639,13 @@ $config['os'][$os]['over'][1]['text'] = 'CPU Usage';
$config['os'][$os]['over'][2]['graph'] = 'device_mempool';
$config['os'][$os]['over'][2]['text'] = 'Memory Usage';
$os = 'juniperex2500os';
$config['os'][$os]['text'] = 'Juniper EX2500';
$config['os'][$os]['type'] = 'network';
$config['os'][$os]['icon'] = 'junos';
$config['os'][$os]['over'][0]['graph'] = 'device_bits';
$config['os'][$os]['over'][0]['text'] = 'Device Traffic';
// Pulse Secure OS definition
$os = 'pulse';
$config['os'][$os]['text'] = 'Pulse Secure';
@@ -0,0 +1,7 @@
<?php
if (!$os) {
if (strstr($sysObjectId, '.1.3.6.1.4.1.1411.102')) {
$os = 'juniperex2500os';
}
}