mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* massive inlines * fix style and wtf * remove rrdtool.inc.php include * fix CommonFunctions namespace issues * looking for missing class space, fix undefined class issues * style fixes
47 lines
1.2 KiB
PHP
47 lines
1.2 KiB
PHP
<?php
|
|
|
|
$name = 'bind';
|
|
$app_id = $app['app_id'];
|
|
$unit_text = 'active sockets';
|
|
$colours = 'psychedelic';
|
|
$dostack = 0;
|
|
$printtotal = 0;
|
|
$addarea = 1;
|
|
$transparency = 15;
|
|
|
|
$rrd_filename = Rrd::name($device['hostname'], ['app', 'bind', $app['app_id'], 'sockets']);
|
|
|
|
$rrd_list = [];
|
|
if (Rrd::checkRrdExists($rrd_filename)) {
|
|
$rrd_list[] = [
|
|
'filename' => $rrd_filename,
|
|
'descr' => 'UDP/IPv4',
|
|
'ds' => 'ui4sa',
|
|
];
|
|
$rrd_list[] = [
|
|
'filename' => $rrd_filename,
|
|
'descr' => 'UDP/IPv6',
|
|
'ds' => 'ui6sa',
|
|
];
|
|
// This appears to be buggy on various versions of BIND named and acts as a counter instead.
|
|
// $rrd_list[]=array(
|
|
// 'filename' => $rrd_filename,
|
|
// 'descr' => 'TCP/IPv4',
|
|
// 'ds' => 'ti4sa',
|
|
// );
|
|
$rrd_list[] = [
|
|
'filename' => $rrd_filename,
|
|
'descr' => 'TCP/IPv6',
|
|
'ds' => 'ti6sa',
|
|
];
|
|
$rrd_list[] = [
|
|
'filename' => $rrd_filename,
|
|
'descr' => 'Raw',
|
|
'ds' => 'rsa',
|
|
];
|
|
} else {
|
|
d_echo('RRD "' . $rrd_filename . '" not found');
|
|
}
|
|
|
|
require 'includes/html/graphs/generic_multi_line.inc.php';
|