mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
29 lines
675 B
PHP
29 lines
675 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
$name = 'sagan';
|
||
|
|
$unit_text = 'Bytes';
|
||
|
|
$colours = 'psychedelic';
|
||
|
|
$dostack = 0;
|
||
|
|
$printtotal = 0;
|
||
|
|
$addarea = 0;
|
||
|
|
$transparency = 15;
|
||
|
|
|
||
|
|
if (isset($vars['sinstance'])) {
|
||
|
|
$rrd_filename = Rrd::name($device['hostname'], ['app', $name, $app->app_id, $vars['sinstance']]);
|
||
|
|
} else {
|
||
|
|
$rrd_filename = Rrd::name($device['hostname'], ['app', $name, $app->app_id]);
|
||
|
|
}
|
||
|
|
|
||
|
|
$rrd_list = [];
|
||
|
|
if (Rrd::checkRrdExists($rrd_filename)) {
|
||
|
|
$rrd_list[] = [
|
||
|
|
'filename' => $rrd_filename,
|
||
|
|
'descr' => 'Bytes',
|
||
|
|
'ds' => 'bytes',
|
||
|
|
];
|
||
|
|
} else {
|
||
|
|
d_echo('RRD "' . $rrd_filename . '" not found');
|
||
|
|
}
|
||
|
|
|
||
|
|
require 'includes/html/graphs/generic_multi_line.inc.php';
|