librenms-librenms/html/includes/graphs/application/mysql_innodb_insert_buffer.inc.php

34 lines
1.1 KiB
PHP
Raw Normal View History

<?php
include("includes/graphs/common.inc.php");
$mysql_rrd = $config['rrd_dir'] . "/" . $device['hostname'] . "/app-mysql-".$app['app_id'].".rrd";
if (is_file($mysql_rrd))
{
$rrd_filename = $mysql_rrd;
}
$rrd_options .= ' -b 1024 ';
$rrd_options .= ' DEF:a='.$rrd_filename.':IBIIs:AVERAGE ';
$rrd_options .= ' DEF:b='.$rrd_filename.':IBIMRd:AVERAGE ';
$rrd_options .= ' DEF:c='.$rrd_filename.':IBIMs:AVERAGE ';
$rrd_options .= 'COMMENT:" Current Average Maximum\n" ';
$rrd_options .= 'LINE1:a#22FF22:"Inserts"\ \ ';
$rrd_options .= 'GPRINT:a:LAST:"%6.2lf %s" ';
$rrd_options .= 'GPRINT:a:AVERAGE:"%6.2lf %s" ';
$rrd_options .= 'GPRINT:a:MAX:"%6.2lf %s\n" ';
$rrd_options .= 'LINE1:b#0022FF:"Merged Records"\ \ ';
$rrd_options .= 'GPRINT:b:LAST:"%6.2lf %s" ';
$rrd_options .= 'GPRINT:b:AVERAGE:"%6.2lf %s" ';
$rrd_options .= 'GPRINT:b:MAX:"%6.2lf %s\n" ';
$rrd_options .= 'LINE1:c#FF0000:"Merges"\ \ ';
$rrd_options .= 'GPRINT:c:LAST:"%6.2lf %s" ';
$rrd_options .= 'GPRINT:c:AVERAGE:"%6.2lf %s" ';
$rrd_options .= 'GPRINT:c:MAX:"%6.2lf %s\n" ';
?>