Files
librenms-librenms/includes/polling/os/fortigate.inc.php
T
Tony MurrayandGitHub 020c5fd7e1 Remove legacy code and fix missing device graphs (#11950)
* removing $graphs global

* remove unused things

* fix some additional graphs

* Fix graphs persisting too soon

* correct name for poller module performance graph

* only one type of graph is used here
2020-07-23 09:57:22 -05:00

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);
$os->enableGraph('fortigate_sessions');
}
$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);
$os->enableGraph('fortigate_cpu');
}