Files
librenms-librenms/includes/polling/os/secureplatform.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

31 lines
891 B
PHP

<?php
/**
* SPLAT.inc.php
*
* NTTCOM MS poller module for Check Point SECUREPLATFORM
**/
use LibreNMS\RRD\RrdDefinition;
$tmp_splat = snmp_get_multi_oid($device, ['svnVersion.0', 'svnApplianceProductName.0', 'svnApplianceSerialNumber.0'], '-OUQs', 'CHECKPOINT-MIB');
$serial = $tmp_splat['svnApplianceSerialNumber.0'];
$hardware = $tmp_splat['svnApplianceProductName.0'];
$version = $tmp_splat['svnVersion.0'];
unset($tmp_SPLAT);
$connections = snmp_get($device, 'fwNumConn.0', '-OQv', 'CHECKPOINT-MIB');
if (is_numeric($connections)) {
$rrd_def = RrdDefinition::make()->addDataset('NumConn', 'GAUGE', 0);
$fields = array(
'NumConn' => $connections,
);
$tags = compact('rrd_def');
data_update($device, 'secureplatform_sessions', $tags, $fields);
$os->enableGraph('secureplatform_sessions');
}
unset($connections);