2010-10-31 20:24:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include("includes/graphs/common.inc.php");
|
|
|
|
|
2011-03-17 14:27:03 +00:00
|
|
|
$mysql_rrd = $config['rrd_dir'] . "/" . $device['hostname'] . "/app-mysql-".$app['app_id'].".rrd";
|
2010-10-31 20:24:21 +00:00
|
|
|
|
2011-03-17 14:27:03 +00:00
|
|
|
if (is_file($mysql_rrd))
|
|
|
|
{
|
|
|
|
$rrd_filename = $mysql_rrd;
|
2010-10-31 20:24:21 +00:00
|
|
|
}
|
2011-03-17 14:27:03 +00:00
|
|
|
|
2010-10-31 20:24:21 +00:00
|
|
|
$rrd_options .= ' DEF:a='.$rrd_filename.':KRRs:AVERAGE ';
|
|
|
|
$rrd_options .= ' DEF:b='.$rrd_filename.':KRs:AVERAGE ';
|
|
|
|
$rrd_options .= ' DEF:c='.$rrd_filename.':KWR:AVERAGE ';
|
|
|
|
$rrd_options .= ' DEF:d='.$rrd_filename.':KWs:AVERAGE ';
|
|
|
|
|
|
|
|
$rrd_options .= 'COMMENT:" Current Average Maximum\n" ';
|
|
|
|
|
|
|
|
$rrd_options .= 'LINE1:a#22FF22:"Key read requests"\ \ ';
|
|
|
|
$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:"Key reads"\ \ ';
|
|
|
|
$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:"Key write requests"\ \ ';
|
|
|
|
$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" ';
|
|
|
|
|
|
|
|
$rrd_options .= 'LINE1:d#00AAAA:"Key writes"\ \ ';
|
|
|
|
$rrd_options .= 'GPRINT:d:LAST:"%6.2lf %s" ';
|
|
|
|
$rrd_options .= 'GPRINT:d:AVERAGE:"%6.2lf %s" ';
|
|
|
|
$rrd_options .= 'GPRINT:d:MAX:"%6.2lf %s\n" ';
|
|
|
|
|
2011-03-17 14:27:03 +00:00
|
|
|
?>
|