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

35 lines
757 B
PHP
Raw Normal View History

<?php
require 'includes/html/graphs/common.inc.php';
$rrd_filename = Rrd::name($device['hostname'], ['app', 'mysql', $app['app_id']]);
2020-09-21 15:40:17 +02:00
$array = [
'CTMPDTs' => 'disk tables',
'CTMPTs' => 'tables',
'CTMPFs' => 'files',
];
$i = 0;
if (Rrd::checkRrdExists($rrd_filename)) {
foreach ($array as $ds => $var) {
$rrd_list[$i]['filename'] = $rrd_filename;
if (is_array($var)) {
$rrd_list[$i]['descr'] = $var['descr'];
} else {
$rrd_list[$i]['descr'] = $var;
}
$rrd_list[$i]['ds'] = $ds;
$i++;
}
} else {
echo "file missing: $file";
}
2020-09-21 15:40:17 +02:00
$colours = 'mixed';
$nototal = 0;
$unit_text = 'Temp';
require 'includes/html/graphs/generic_multi_simplex_seperated.inc.php';