mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
65 lines
2.1 KiB
PHP
65 lines
2.1 KiB
PHP
|
<?php
|
||
|
|
||
|
function cpugraphHP ($rrd, $graph , $from, $to, $width, $height)
|
||
|
{
|
||
|
global $rrdtool; global $installdir;
|
||
|
$database = "rrd/" . $rrd;
|
||
|
$imgfile = "graphs/" . "$graph";
|
||
|
|
||
|
$optsa = array( "--start", $from, "--width", $width, "--height", $height, "--vertical-label", $vertical, "--alt-autoscale-max",
|
||
|
"-l 0",
|
||
|
"-E",
|
||
|
"--title", $title,
|
||
|
"DEF:load=$database:LOAD:AVERAGE",
|
||
|
"AREA:load#FAFDCE:",
|
||
|
"LINE1.25:load#dd8800:Load",
|
||
|
"GPRINT:load:LAST:Cur\:%3.2lf",
|
||
|
"GPRINT:load:AVERAGE:Avg\:%3.2lf",
|
||
|
"GPRINT:load:MIN:Min\:%3.2lf",
|
||
|
"GPRINT:load:MAX:Max\:%3.2lf\\n");
|
||
|
|
||
|
if($width <= "300") {$optsb = array("--font", "LEGEND:7:$installdir/DejaVuSansMono.ttf",
|
||
|
"--font", "AXIS:6:$installdir/DejaVuSansMono.ttf",
|
||
|
"--font-render-mode", "normal");}
|
||
|
$opts = array_merge($optsa, $optsb);
|
||
|
|
||
|
$ret = rrd_graph("$imgfile", $opts, count($opts));
|
||
|
|
||
|
if( !is_array($ret) ) {
|
||
|
$err = rrd_error();
|
||
|
#echo "rrd_graph() ERROR: $err\n";
|
||
|
return FALSE;
|
||
|
} else {
|
||
|
return $imgfile;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function memgraphHP ($rrd, $graph , $from, $to, $width, $height, $title, $vertical)
|
||
|
{
|
||
|
global $rrdtool; global $installdir;
|
||
|
$database = "rrd/" . $rrd;
|
||
|
$imgfile = "graphs/" . "$graph";
|
||
|
$memrrd = $database;
|
||
|
$opts = "--start $from \
|
||
|
--alt-autoscale-max \
|
||
|
--width $width --height $height \
|
||
|
-l 0 -E \
|
||
|
-b 1024 \
|
||
|
DEF:TOTAL=$memrrd:TOTAL:AVERAGE \
|
||
|
DEF:FREE=$memrrd:FREE:AVERAGE \
|
||
|
DEF:USED=$memrrd:USED:AVERAGE \
|
||
|
AREA:USED#ee9900:Used \
|
||
|
AREA:FREE#FAFDCE:Free:STACK \
|
||
|
LINE1.5:TOTAL#cc0000:";
|
||
|
|
||
|
if($width <= "300") {$opts .= "\
|
||
|
--font LEGEND:7:$installdir/DejaVuSansMono.ttf \
|
||
|
--font AXIS:6:$installdir/DejaVuSansMono.ttf \
|
||
|
--font-render-mode normal";}
|
||
|
|
||
|
|
||
|
`$rrdtool graph $imgfile $opts`;
|
||
|
return $imgfile;
|
||
|
}
|
||
|
|