Files
librenms-librenms/includes/html/graphs/application/bind_outgoing.inc.php

70 lines
1.1 KiB
PHP
Raw Normal View History

<?php
2020-09-21 15:40:17 +02:00
$unitlen = 10;
$bigdescrlen = 9;
$smalldescrlen = 9;
2020-09-21 15:40:17 +02:00
$dostack = 0;
$printtotal = 0;
$unit_text = 'query/sec';
$colours = 'psychedelic';
$rrd_list = [];
2020-09-21 15:40:17 +02:00
$rrd_filename = rrd_name($device['hostname'], ['app', 'bind', $app['app_id'], 'outgoing']);
$array = [
'any',
'a',
'aaaa',
'cname',
'mx',
'ns',
'ptr',
'soa',
'srv',
'spf',
'afsdb',
'apl',
'caa',
'cdnskey',
'cds',
'cert',
'dhcid',
'dlv',
'dnskey',
'ds',
'ipseckey',
'key',
'kx',
'loc',
'naptr',
'nsec',
'nsec3',
'nsec3param',
'rrsig',
'rp',
'sig',
'sshfp',
'ta',
'tkey',
'tlsa',
'tsig',
'txt',
'uri',
'dname',
'axfr',
'ixfr',
'opt',
2020-09-21 15:40:17 +02:00
];
if (rrdtool_check_rrd_exists($rrd_filename)) {
foreach ($array as $ds) {
2020-09-21 15:40:17 +02:00
$rrd_list[] = [
'filename' => $rrd_filename,
'descr' => strtoupper($ds),
'ds' => $ds,
2020-09-21 15:40:17 +02:00
];
}
} else {
echo "file missing: $file";
}
require 'includes/html/graphs/generic_multi_line.inc.php';