Files
librenms-librenms/includes/html/graphs/application/mysql_innodb_io_pending.inc.php
SourceDoctor 6b7b143cbb Show full description text on MySQL RRDs (#11738)
* Show full description text on MySQL Connections

* further adjustments
2020-05-30 11:46:58 -05:00

40 lines
985 B
PHP

<?php
require 'includes/html/graphs/common.inc.php';
$descr_len = 16;
$rrd_filename = rrd_name($device['hostname'], array('app', 'mysql', $app['app_id']));
$array = array(
'IBILog' => 'AIO Log',
'IBISc' => 'AIO Sync',
'IBIFLg' => 'Buf Pool Flush',
'IBFBl' => 'Log Flushes',
'IBIIAo' => 'Insert Buf AIO Read',
'IBIAd' => 'Normal AIO Read',
'IBIAe' => 'Normal AIO Writes',
);
$i = 0;
if (rrdtool_check_rrd_exists($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";
}
$colours = 'mixed';
$nototal = 1;
$unit_text = '';
require 'includes/html/graphs/generic_multi_simplex_seperated.inc.php';