mirror of
https://github.com/ranl/monitor-utils.git
synced 2024-11-05 07:43:40 +01:00
20 lines
656 B
PHP
20 lines
656 B
PHP
|
<?php
|
||
|
|
||
|
$opt[1] = '--title ' . $NAGIOS_SERVICEDESC;
|
||
|
|
||
|
$def[1] = "DEF:var1=$rrdfile:$DS[1]:AVERAGE " ;
|
||
|
$def[1] .= "DEF:var2=$rrdfile:$DS[2]:AVERAGE " ;
|
||
|
|
||
|
$def[1] .= "AREA:var1#FFCC99:\"Total Sum Modules \" ";
|
||
|
$def[1] .= "GPRINT:var1:LAST:\"%6.2lf last\" " ;
|
||
|
$def[1] .= "GPRINT:var1:AVERAGE:\"%6.2lf avg\" " ;
|
||
|
$def[1] .= "GPRINT:var1:MAX:\"%6.2lf max\\n\" " ;
|
||
|
$def[1] .= 'COMMENT:"Check Command ' . $TEMPLATE[1] . '\r" ';
|
||
|
|
||
|
$def[1] .= "AREA:var2#00FF00:\"Modules Errors\" " ;
|
||
|
$def[1] .= "LINE:var2#000000 " ;
|
||
|
$def[1] .= "GPRINT:var2:LAST:\"%6.2lf last\" " ;
|
||
|
$def[1] .= "GPRINT:var2:AVERAGE:\"%6.2lf avg\" " ;
|
||
|
$def[1] .= "GPRINT:var2:MAX:\"%6.2lf max\\n\" ";
|
||
|
?>
|