newdevice: Added support for Foundry Networks #4311

newdevice: Added support for Foundry Networks #4311
This commit is contained in:
Søren Rosiak
2016-09-04 18:28:06 +03:00
committed by Neil Lathwood
parent 28db97382e
commit 7a3a785edb
4 changed files with 43 additions and 0 deletions

BIN
html/images/os/foundry.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@ -2076,6 +2076,18 @@ $config['os'][$os]['over'][1]['text'] = 'CPU Usage';
$config['os'][$os]['over'][2]['graph'] = 'device_mempool';
$config['os'][$os]['over'][2]['text'] = 'Memory Usage';
// Foundry Networking
$os = 'foundryos';
$config['os'][$os]['text'] = 'Foundry Networking';
$config['os'][$os]['type'] = 'network';
$config['os'][$os]['icon'] = 'foundry';
$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';
// Graph Types
require_once $config['install_dir'].'/includes/load_db_graph_types.inc.php';

View File

@ -0,0 +1,17 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2016 Søren Friis Rosiak <sorenrosiak@gmail.com>
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
if (!$os) {
if (str_contains($sysDescr, 'Foundry Networks')) {
$os = 'foundryos';
}
}

View File

@ -0,0 +1,14 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2016 Søren Friis Rosiak <sorenrosiak@gmail.com>
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
preg_match('/Foundry Networks (.*)/', $poll_device['sysDescr'], $data);
$hardware = $data[1];