mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
197 lines
6.4 KiB
PHP
197 lines
6.4 KiB
PHP
<?php
|
|
/**
|
|
* HostResources.php
|
|
*
|
|
* -Description-
|
|
*
|
|
* 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.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* @link https://www.librenms.org
|
|
*
|
|
* @copyright 2018 Tony Murray
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
*/
|
|
|
|
namespace LibreNMS\OS\Traits;
|
|
|
|
use App\Models\Mempool;
|
|
use Closure;
|
|
use Exception;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\Str;
|
|
use LibreNMS\Device\Processor;
|
|
use Rrd;
|
|
|
|
trait HostResources
|
|
{
|
|
private $hrStorage;
|
|
private $memoryStorageTypes = [
|
|
'hrStorageVirtualMemory',
|
|
'hrStorageRam',
|
|
'hrStorageOther',
|
|
];
|
|
private $ignoreMemoryDescr = [
|
|
'MALLOC',
|
|
'UMA',
|
|
'procfs',
|
|
'/proc',
|
|
];
|
|
private $validOtherMemory = [
|
|
'Memory buffers',
|
|
'Cached memory',
|
|
'Shared memory',
|
|
];
|
|
private $memoryDescrWarn = [
|
|
'Cached memory' => 0,
|
|
'Memory buffers' => 0,
|
|
'Physical memory' => 99,
|
|
'Real memory' => 90,
|
|
'Shared memory' => 0,
|
|
'Swap space' => 10,
|
|
'Virtual memory' => 95,
|
|
];
|
|
|
|
/**
|
|
* Discover processors.
|
|
* Returns an array of LibreNMS\Device\Processor objects that have been discovered
|
|
*
|
|
* @return array Processors
|
|
*/
|
|
public function discoverProcessors()
|
|
{
|
|
echo 'Host Resources: ';
|
|
$processors = [];
|
|
|
|
try {
|
|
$hrProcessorLoad = $this->getCacheByIndex('hrProcessorLoad', 'HOST-RESOURCES-MIB');
|
|
|
|
if (empty($hrProcessorLoad)) {
|
|
// no hr data, return
|
|
return [];
|
|
}
|
|
|
|
$hrDeviceDescr = $this->getCacheByIndex('hrDeviceDescr', 'HOST-RESOURCES-MIB');
|
|
} catch (Exception $e) {
|
|
return [];
|
|
}
|
|
|
|
foreach ($hrProcessorLoad as $index => $usage) {
|
|
$usage_oid = '.1.3.6.1.2.1.25.3.3.1.2.' . $index;
|
|
$descr = $hrDeviceDescr[$index] ?? null;
|
|
|
|
if (! is_numeric($usage)) {
|
|
continue;
|
|
}
|
|
|
|
$device = $this->getDeviceArray();
|
|
if ($device['os'] == 'arista-eos' && $index == '1') {
|
|
continue;
|
|
}
|
|
|
|
if (empty($descr)
|
|
|| $descr == 'Unknown Processor Type' // Windows: Unknown Processor Type
|
|
|| $descr == 'An electronic chip that makes the computer work.'
|
|
) {
|
|
$descr = 'Processor';
|
|
} else {
|
|
// Make the description a bit shorter
|
|
$remove_strings = [
|
|
'GenuineIntel: ',
|
|
'AuthenticAMD: ',
|
|
'CPU ',
|
|
'(TM)',
|
|
'(R)',
|
|
];
|
|
$descr = str_replace($remove_strings, '', $descr);
|
|
$descr = str_replace(' ', ' ', $descr);
|
|
}
|
|
|
|
$old_name = ['hrProcessor', $index];
|
|
$new_name = ['processor', 'hr', $index];
|
|
Rrd::renameFile($this->getDeviceArray(), $old_name, $new_name);
|
|
|
|
$processor = Processor::discover(
|
|
'hr',
|
|
$this->getDeviceId(),
|
|
$usage_oid,
|
|
$index,
|
|
$descr,
|
|
1,
|
|
$usage,
|
|
null,
|
|
null,
|
|
$index
|
|
);
|
|
|
|
if ($processor->isValid()) {
|
|
$processors[] = $processor;
|
|
}
|
|
}
|
|
|
|
return $processors;
|
|
}
|
|
|
|
public function discoverMempools()
|
|
{
|
|
$hr_storage = $this->getCacheTable('hrStorageTable', 'HOST-RESOURCES-MIB:HOST-RESOURCES-TYPES');
|
|
|
|
if (! is_array($hr_storage)) {
|
|
return new Collection();
|
|
}
|
|
|
|
$ram_bytes = snmp_get($this->getDeviceArray(), 'hrMemorySize.0', '-OQUv', 'HOST-RESOURCES-MIB') * 1024
|
|
?: (isset($hr_storage[1]['hrStorageSize']) ? $hr_storage[1]['hrStorageSize'] * $hr_storage[1]['hrStorageAllocationUnits'] : 0);
|
|
|
|
return collect($hr_storage)->filter(Closure::fromCallable([$this, 'memValid']))
|
|
->map(function ($storage, $index) use ($ram_bytes) {
|
|
$total = $storage['hrStorageSize'];
|
|
if (Str::contains($storage['hrStorageDescr'], 'Real Memory Metrics') || ($storage['hrStorageType'] == 'hrStorageOther' && $total != 0)) {
|
|
// use total RAM for buffers, cached, and shared
|
|
// bsnmp does not report the same as net-snmp, total RAM is stored in hrMemorySize
|
|
if ($ram_bytes) {
|
|
$total = $ram_bytes / $storage['hrStorageAllocationUnits']; // will be calculated with this entries allocation units later
|
|
}
|
|
}
|
|
|
|
return (new Mempool([
|
|
'mempool_index' => $index,
|
|
'mempool_type' => 'hrstorage',
|
|
'mempool_precision' => $storage['hrStorageAllocationUnits'],
|
|
'mempool_descr' => $storage['hrStorageDescr'],
|
|
'mempool_perc_warn' => $this->memoryDescrWarn[$storage['hrStorageDescr']] ?? 90,
|
|
'mempool_used_oid' => ".1.3.6.1.2.1.25.2.3.1.6.$index",
|
|
'mempool_total_oid' => null,
|
|
]))->setClass(null, $storage['hrStorageType'] == 'hrStorageVirtualMemory' ? 'virtual' : 'system')
|
|
->fillUsage($storage['hrStorageUsed'] ?? null, $total);
|
|
});
|
|
}
|
|
|
|
protected function memValid($storage)
|
|
{
|
|
if (empty($storage['hrStorageType']) || empty($storage['hrStorageDescr'])) {
|
|
return false;
|
|
}
|
|
|
|
if (! in_array($storage['hrStorageType'], $this->memoryStorageTypes)) {
|
|
return false;
|
|
}
|
|
|
|
if ($storage['hrStorageType'] == 'hrStorageOther' && ! in_array($storage['hrStorageDescr'], $this->validOtherMemory)) {
|
|
return false;
|
|
}
|
|
|
|
return ! Str::contains($storage['hrStorageDescr'], $this->ignoreMemoryDescr);
|
|
}
|
|
}
|