newdevice: Added support for Fujitsu Primergy switches #4277 (#4280)

* newdevice: Added support for Fujitsu Primergy switches #4277
This commit is contained in:
Søren Rosiak
2016-08-30 19:31:58 +03:00
committed by Neil Lathwood
parent a6b7f9c4b2
commit 583411046f
4 changed files with 43 additions and 0 deletions

BIN
html/images/os/fujitsu.png Normal file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 1005 B

View File

@@ -2040,6 +2040,17 @@ $config['os'][$os]['text'] = 'Sonus SBC';
$config['os'][$os]['type'] = 'appliance';
$config['os'][$os]['icon'] = 'sonus';
// Fujitsu Primergy Switch
$os = 'fujitsupyos';
$config['os'][$os]['text'] = 'Fujitsu';
$config['os'][$os]['type'] = 'network';
$config['os'][$os]['icon'] = 'fujitsu';
$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 (stristr($sysDescr, 'Fujitsu PY CB Eth Switch')) {
$os = 'fujitsupyos';
}
}

View File

@@ -0,0 +1,15 @@
<?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.
*/
$data = str_replace(array('Fujitsu ', ' Runtime Code '), '', explode(',', $poll_device['sysDescr']));
$hardware = $data[0];
$version = $data[1];