Files
librenms-librenms/includes/html/graphs/application/bind_cache_deleted.inc.php
2020-09-21 15:40:17 +02:00

31 lines
719 B
PHP

<?php
$name = 'bind';
$app_id = $app['app_id'];
$unit_text = 'per second';
$colours = 'psychedelic';
$dostack = 0;
$printtotal = 0;
$addarea = 1;
$transparency = 15;
$rrd_filename = rrd_name($device['hostname'], ['app', 'bind', $app['app_id'], 'cache']);
$rrd_list = [];
if (rrdtool_check_rrd_exists($rrd_filename)) {
$rrd_list[] = [
'filename' => $rrd_filename,
'descr' => 'Mem Exhaustion',
'ds' => 'crddtme',
];
$rrd_list[] = [
'filename' => $rrd_filename,
'descr' => 'TTL Expiration',
'ds' => 'crddtte',
];
} else {
d_echo('RRD "' . $rrd_filename . '" not found');
}
require 'includes/html/graphs/generic_multi_line.inc.php';