mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* refactor: Updated discovery to use a core module for sysDescr/sysObjectID use * final update hopefully * revert changes * more changes + docs * migrated poller to use numerical sysObjectID * more updates for sysObjectID * update any alert rules which might have enterprises. in * moved schema file * small updates * updated getHostOS() * scrut fixes * updated sysObjectId -> sysObjectID * updated sysObjectId -> sysObjectID * updated remainder of sysObjectId -> sysObjectID * another sysObjectId -> sysObjectID * fixed secureplatform test data * Fix tests: $device is not pulled from the database before polling Also, update the db in the core discovery module.
43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
<?php
|
|
|
|
use LibreNMS\RRD\RrdDefinition;
|
|
|
|
$fnSysVersion = snmp_get($device, 'FORTINET-FORTIGATE-MIB::fgSysVersion.0', '-Ovq');
|
|
$serial = snmp_get($device, 'ENTITY-MIB::entPhysicalSerialNum.1', '-Ovq');
|
|
$version = preg_replace('/(.+),(.+),(.+)/', '\\1||\\2||\\3', $fnSysVersion);
|
|
list($version,$features) = explode('||', $version);
|
|
if (isset($rewrite_fortinet_hardware[$device['sysObjectID']])) {
|
|
$hardware = $rewrite_fortinet_hardware[$device['sysObjectID']];
|
|
}
|
|
if (empty($hardware)) {
|
|
$hardware = snmp_get($device, 'ENTITY-MIB::entPhysicalModelName.1', '-Ovq');
|
|
}
|
|
|
|
$sessions = snmp_get($device, 'FORTINET-FORTIGATE-MIB::fgSysSesCount.0', '-Ovq');
|
|
if (is_numeric($sessions)) {
|
|
$rrd_def = RrdDefinition::make()->addDataset('sessions', 'GAUGE', 0, 3000000);
|
|
|
|
print "Sessions: $sessions\n";
|
|
$fields = array(
|
|
'sessions' => $sessions,
|
|
);
|
|
|
|
$tags = compact('rrd_def');
|
|
data_update($device, 'fortigate_sessions', $tags, $fields);
|
|
$graphs['fortigate_sessions'] = true;
|
|
}
|
|
|
|
$cpu_usage = snmp_get($device, 'FORTINET-FORTIGATE-MIB::fgSysCpuUsage.0', '-Ovq');
|
|
if (is_numeric($cpu_usage)) {
|
|
$rrd_def = RrdDefinition::make()->addDataset('LOAD', 'GAUGE', -1, 100);
|
|
|
|
echo "CPU: $cpu_usage%\n";
|
|
$fields = array(
|
|
'LOAD' => $cpu_usage,
|
|
);
|
|
|
|
$tags = compact('rrd_def');
|
|
data_update($device, 'fortigate_cpu', $tags, $fields);
|
|
$graphs['fortigate_cpu'] = true;
|
|
}
|