2009-09-07 11:07:59 +00:00
|
|
|
<?php
|
2008-03-22 13:31:46 +00:00
|
|
|
|
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);
|
|
|
|
|
2016-07-07 01:33:43 -05:00
|
|
|
$rrd_def = array(
|
|
|
|
'DS:allocate:GAUGE:600:0:3000000',
|
|
|
|
'DS:max:GAUGE:600:0:3000000',
|
|
|
|
'DS:failed:GAUGE:600:0:1000'
|
|
|
|
);
|
2008-03-22 13:31:46 +00:00
|
|
|
|
2015-08-18 16:26:55 +00:00
|
|
|
$fields = array(
|
|
|
|
'allocate' => $sessalloc,
|
|
|
|
'max' => $sessmax,
|
|
|
|
'failed' => $sessfailed,
|
|
|
|
);
|
|
|
|
|
2016-07-07 01:33:43 -05:00
|
|
|
$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;
|