mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Use data_update instead of rrd_update/rrd_create and influx_update Centralize rrd file check so we can check against a remote rrdcached server too Use rrd_name() to generate rrd file names
27 lines
885 B
PHP
27 lines
885 B
PHP
<?php
|
|
|
|
$version = preg_replace('/(.+)\ version\ (.+)\ \(SN:\ (.+)\,\ (.+)\)/', '\\1||\\2||\\3||\\4', $poll_device['sysDescr']);
|
|
list($hardware,$version,$serial,$features) = explode('||', $version);
|
|
|
|
$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';
|
|
$sess_data = shell_exec($sess_cmd);
|
|
list ($sessalloc, $sessmax, $sessfailed) = explode("\n", $sess_data);
|
|
|
|
$rrd_def = array(
|
|
'DS:allocate:GAUGE:600:0:3000000',
|
|
'DS:max:GAUGE:600:0:3000000',
|
|
'DS:failed:GAUGE:600:0:1000'
|
|
);
|
|
|
|
$fields = array(
|
|
'allocate' => $sessalloc,
|
|
'max' => $sessmax,
|
|
'failed' => $sessfailed,
|
|
);
|
|
|
|
$tags = compact('rrd_def');
|
|
data_update($device, 'screenos_sessions', $tags, $fields);
|
|
|
|
$graphs['screenos_sessions'] = true;
|