mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Apply fixes from StyleCI (#12120)
This commit is contained in:
@@ -1,29 +1,30 @@
|
||||
<?php
|
||||
|
||||
$name = 'bind';
|
||||
$app_id = $app['app_id'];
|
||||
$unit_text = 'per second';
|
||||
$colours = 'psychedelic';
|
||||
$dostack = 0;
|
||||
$printtotal = 0;
|
||||
$addarea = 1;
|
||||
$transparency = 15;
|
||||
$unit_text = 'per second';
|
||||
$colours = 'psychedelic';
|
||||
$dostack = 0;
|
||||
$printtotal = 0;
|
||||
$addarea = 1;
|
||||
$transparency = 15;
|
||||
|
||||
$rrd_filename = rrd_name($device['hostname'], array('app', 'bind', $app['app_id'], 'cache'));
|
||||
$rrd_filename = rrd_name($device['hostname'], ['app', 'bind', $app['app_id'], 'cache']);
|
||||
|
||||
$rrd_list=array();
|
||||
$rrd_list = [];
|
||||
if (rrdtool_check_rrd_exists($rrd_filename)) {
|
||||
$rrd_list[]=array(
|
||||
$rrd_list[] = [
|
||||
'filename' => $rrd_filename,
|
||||
'descr' => 'Mem Exhaustion',
|
||||
'ds' => 'crddtme',
|
||||
);
|
||||
$rrd_list[]=array(
|
||||
];
|
||||
$rrd_list[] = [
|
||||
'filename' => $rrd_filename,
|
||||
'descr' => 'TTL Expiration',
|
||||
'ds' => 'crddtte',
|
||||
);
|
||||
];
|
||||
} else {
|
||||
d_echo('RRD "'.$rrd_filename.'" not found');
|
||||
d_echo('RRD "' . $rrd_filename . '" not found');
|
||||
}
|
||||
|
||||
require 'includes/html/graphs/generic_multi_line.inc.php';
|
||||
|
||||
Reference in New Issue
Block a user