WebSVN - scripts - Rev 13 - /perl/trunk/v1.0/check_memory.php

thorko Repositories scripts

Rev

Blame | Last modification | View Log | RSS feed

<?php

$opt[1] = "--title \"Memory consumption $hostname / $servicedesc\" ";

$def[1] =  "DEF:Data=$RRDFILE[1]:$DS[1]:AVERAGE " ;
$def[1] .= "DEF:Lib=$RRDFILE[1]:$DS[2]:AVERAGE " ;
$def[1] .= "DEF:RSS=$RRDFILE[1]:$DS[3]:AVERAGE " ;
$def[1] .= "DEF:Exe=$RRDFILE[1]:$DS[4]:AVERAGE " ;
$def[1] .= "DEF:Stk=$RRDFILE[1]:$DS[5]:AVERAGE " ;

$def[1] .= "LINE1:Data#80ff40:\"Data used     \" " ;
$def[1] .= "GPRINT:Data:LAST:\"%6.0lf KB last\" " ;
$def[1] .= "GPRINT:Data:AVERAGE:\"%6.0lf MB avg\" " ;
$def[1] .= "GPRINT:Data:MAX:\"%6.0lf KB max\\n\" ";

$def[1] .= "LINE2:Lib#80aa40:\"Lib used     \" " ;
$def[1] .= "GPRINT:Lib:LAST:\"%6.0lf KB last\" " ;
$def[1] .= "GPRINT:Lib:AVERAGE:\"%6.0lf MB avg\" " ;
$def[1] .= "GPRINT:Lib:MAX:\"%6.0lf KB max\\n\" ";

$def[1] .= "LINE3:RSS#7b0040:\"RSS used     \" " ;
$def[1] .= "GPRINT:RSS:LAST:\"%6.0lf KB last\" " ;
$def[1] .= "GPRINT:RSS:AVERAGE:\"%6.0lf KB avg\" " ;
$def[1] .= "GPRINT:RSS:MAX:\"%6.0lf KB max\\n\" ";

$def[1] .= "LINE4:Exe#969640:\"Exe used     \" " ;
$def[1] .= "GPRINT:Exe:LAST:\"%6.0lf KB last\" " ;
$def[1] .= "GPRINT:Exe:AVERAGE:\"%6.0lf MB avg\" " ;
$def[1] .= "GPRINT:Exe:MAX:\"%6.0lf KB max\\n\" ";

$def[1] .= "LINE5:Stk#80ffcc:\"Stk used     \" " ;
$def[1] .= "GPRINT:Stk:LAST:\"%6.0lf KB last\" " ;
$def[1] .= "GPRINT:Stk:AVERAGE:\"%6.0lf MB avg\" " ;
$def[1] .= "GPRINT:Stk:MAX:\"%6.0lf KB max\\n\" ";

?>