Files
librenms-librenms/includes/polling/os/screenos.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
881 B
PHP

<?php
use LibreNMS\RRD\RrdDefinition;
$version = preg_replace('/(.+)\ version\ (.+)\ \(SN:\ (.+)\,\ (.+)\)/', '\\1||\\2||\\3||\\4', $device['sysDescr']);
list($hardware,$version,$serial,$features) = explode('||', $version);
$oids = array(
'.1.3.6.1.4.1.3224.16.3.2.0',
'.1.3.6.1.4.1.3224.16.3.3.0',
'.1.3.6.1.4.1.3224.16.3.4.0',
);
$sess_data = snmp_get_multi_oid($device, $oids);
list ($sessalloc, $sessmax, $sessfailed) = array_values($sess_data);
$rrd_def = RrdDefinition::make()
->addDataset('allocate', 'GAUGE', 0, 3000000)
->addDataset('max', 'GAUGE', 0, 3000000)
->addDataset('failed', 'GAUGE', 0, 1000);
$fields = array(
'allocate' => $sessalloc,
'max' => $sessmax,
'failed' => $sessfailed,
);
$tags = compact('rrd_def');
data_update($device, 'screenos_sessions', $tags, $fields);
$os->enableGraph('screenos_sessions');