Files
librenms-librenms/includes/html/graphs/application/cape_distributed.inc.php
2023-01-29 20:51:58 +00:00

24 lines
515 B
PHP

<?php
$name = 'cape';
$app_id = $app['app_id'];
$unit_text = 'Run Count';
$colours = 'psychedelic';
$dostack = 0;
$printtotal = 1;
$addarea = 0;
$transparency = 15;
$float_precision = 3;
$rrd_filename = Rrd::name($device['hostname'], ['app', $name, $app['app_id']]);
if (Rrd::checkRrdExists($rrd_filename)) {
$filename = $rrd_filename;
$descr = 'distributed';
$ds = 'distributed';
} else {
d_echo('RRD "' . $rrd_filename . '" not found');
}
require 'includes/html/graphs/generic_stats.inc.php';