mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Merge pull request #3641 from Rosiak/oracle-ilom-support
Basic Oracle ILOM Support
This commit is contained in:
BIN
html/images/os/oracle.png
Normal file
BIN
html/images/os/oracle.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 764 B |
@ -1692,6 +1692,18 @@ $config['os'][$os]['text'] = 'Infoblox';
|
||||
$config['os'][$os]['type'] = 'appliance';
|
||||
$config['os'][$os]['icon'] = 'infoblox';
|
||||
|
||||
// Oracle ILOM
|
||||
$os = 'oracle-ilom';
|
||||
$config['os'][$os]['text'] = 'Oracle ILOM';
|
||||
$config['os'][$os]['type'] = 'appliance';
|
||||
$config['os'][$os]['icon'] = 'oracle';
|
||||
$config['os'][$os]['over'][0]['graph'] = 'device_bits';
|
||||
$config['os'][$os]['over'][0]['text'] = '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';
|
||||
|
||||
// Lenovo EMC (NAS)
|
||||
$os = 'lenovoemc';
|
||||
$config['os'][$os]['type'] = 'storage';
|
||||
|
17
includes/discovery/os/oracle-ilom.inc.php
Normal file
17
includes/discovery/os/oracle-ilom.inc.php
Normal 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 (strstr($sysObjectId, '.1.3.6.1.4.1.42.2.200.2.1.1')) {
|
||||
$os = 'oracle-ilom';
|
||||
}
|
||||
}
|
16
includes/polling/os/oracle-ilom.inc.php
Normal file
16
includes/polling/os/oracle-ilom.inc.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?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 (preg_match('/^(.*), ILOM v(.*), (.*)/', $poll_device['sysDescr'], $regexp_result)) {
|
||||
$hardware = 'Oracle ' . $regexp_result[1];
|
||||
$version = $regexp_result[2];
|
||||
}
|
Reference in New Issue
Block a user