mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added basic detection for EqualLogic units
This commit is contained in:
@@ -660,6 +660,12 @@ $os = "powervault";
|
||||
$config['os'][$os]['text'] = "Dell PowerVault";
|
||||
$config['os'][$os]['icon'] = "dell";
|
||||
|
||||
$os = "equallogic";
|
||||
$config['os'][$os]['text'] = "Dell EqualLogic";
|
||||
$config['os'][$os]['icon'] = "dell";
|
||||
$config['os'][$os]['over'][0]['graph'] = "device_bits";
|
||||
$config['os'][$os]['over'][0]['text'] = "Device Traffic";
|
||||
|
||||
$os = "drac";
|
||||
$config['os'][$os]['text'] = "Dell DRAC";
|
||||
$config['os'][$os]['icon'] = "dell";
|
||||
|
6
includes/discovery/os/equallogic.inc.php
Normal file
6
includes/discovery/os/equallogic.inc.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
if (!$os) {
|
||||
if (strstr($sysObjectId, ".1.3.6.1.4.1.12740.17.1")) { $os = "equallogic"; }
|
||||
}
|
||||
|
Reference in New Issue
Block a user