mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
|
<?php
|
||
|
|
||
|
$simple_rrd = true;
|
||
|
|
||
|
if (!is_array($config['nfsen_rrds'])) {
|
||
|
$config['nfsen_rrds'] = array($config['nfsen_rrds']);
|
||
|
}
|
||
|
|
||
|
foreach ($config['nfsen_rrds'] as $nfsenrrds) {
|
||
|
$nfsenrrds = rtrim($nfsenrrds, '/') . '/';
|
||
|
|
||
|
if ($config['nfsen_split_char']) {
|
||
|
$nfsenHostname=str_replace('.', $config['nfsen_split_char'], $device['hostname']);
|
||
|
} else {
|
||
|
$nfsenHostname=$device['hostname'];
|
||
|
}
|
||
|
$rrd_filename=$nfsenrrds.$nfsenHostname.'/'.$vars['channel'].'.rrd';
|
||
|
|
||
|
if (is_file($rrd_filename)) {
|
||
|
$colours = 'blues';
|
||
|
$nototal = 0;
|
||
|
$units = '';
|
||
|
$scale_min = '0';
|
||
|
$unit_text = $dsdescr;
|
||
|
|
||
|
// set a multiplier which in turn will create a CDEF if this var is set
|
||
|
if ($dsprefix == 'traffic_') {
|
||
|
$multiplier = '8';
|
||
|
}
|
||
|
|
||
|
$flowtypes = array('tcp', 'udp', 'icmp', 'other');
|
||
|
$rrd_list = array();
|
||
|
foreach ($flowtypes as $flowtype) {
|
||
|
$rrd_list[] = array(
|
||
|
'filename' => $rrd_filename,
|
||
|
'descr' => $flowtype,
|
||
|
'ds' => $dsprefix.$flowtype
|
||
|
);
|
||
|
}
|
||
|
d_echo($rrd_list);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
require 'includes/graphs/generic_multi_simplex_seperated.inc.php';
|