Files
librenms-librenms/includes/polling/os/screenos.inc.php
T

28 lines
965 B
PHP
Raw Normal View History

2009-09-07 11:07:59 +00:00
<?php
2008-03-22 13:31:46 +00:00
use LibreNMS\RRD\RrdDefinition;
2015-07-13 20:10:26 +02:00
$version = preg_replace('/(.+)\ version\ (.+)\ \(SN:\ (.+)\,\ (.+)\)/', '\\1||\\2||\\3||\\4', $poll_device['sysDescr']);
list($hardware,$version,$serial,$features) = explode('||', $version);
2008-03-22 13:31:46 +00:00
2015-07-13 20:10:26 +02:00
$sess_cmd = $config['snmpget'].' -M '.$config['mibdir'].' -O qv '.snmp_gen_auth($device).' '.$device['hostname'];
$sess_cmd .= ' .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';
2008-03-22 13:31:46 +00:00
$sess_data = shell_exec($sess_cmd);
list ($sessalloc, $sessmax, $sessfailed) = explode("\n", $sess_data);
$rrd_def = RrdDefinition::make()
->addDataset('allocate', 'GAUGE', 0, 3000000)
->addDataset('max', 'GAUGE', 0, 3000000)
->addDataset('failed', 'GAUGE', 0, 1000);
2008-03-22 13:31:46 +00:00
$fields = array(
'allocate' => $sessalloc,
'max' => $sessmax,
'failed' => $sessfailed,
);
$tags = compact('rrd_def');
data_update($device, 'screenos_sessions', $tags, $fields);
2015-08-19 20:58:02 +00:00
2015-07-13 20:10:26 +02:00
$graphs['screenos_sessions'] = true;