21 lines
870 B
PHP
21 lines
870 B
PHP
|
<?php
|
||
|
#
|
||
|
# Copyright (c) 2006-2010 Joerg Linge (http://www.pnp4nagios.org)
|
||
|
# Plugin: check_snmp_int.pl (COUNTER)
|
||
|
#
|
||
|
$opt[1] = " --vertical-label \"Bytes\" -b 1000 --title \"Interface Traffic for $hostname / $servicedesc\" ";
|
||
|
$def[1] = "DEF:var1=$RRDFILE[1]:$DS[1]:AVERAGE " ;
|
||
|
$def[1] .= "DEF:var2=$RRDFILE[2]:$DS[2]:AVERAGE " ;
|
||
|
$def[1] .= "LINE1:var1#003300:\"in \" " ;
|
||
|
$def[1] .= "GPRINT:var1:LAST:\"%7.2lf %SB/s last\" " ;
|
||
|
$def[1] .= "GPRINT:var1:AVERAGE:\"%7.2lf %SB/s avg\" " ;
|
||
|
$def[1] .= "GPRINT:var1:MAX:\"%7.2lf %SB/s max\\n\" " ;
|
||
|
$def[1] .= "LINE1:var2#00ff00:\"out \" " ;
|
||
|
$def[1] .= "GPRINT:var2:LAST:\"%7.2lf %SB/s last\" " ;
|
||
|
$def[1] .= "GPRINT:var2:AVERAGE:\"%7.2lf %SB/s avg\" " ;
|
||
|
$def[1] .= "GPRINT:var2:MAX:\"%7.2lf %SB/s max\\n\" ";
|
||
|
if($this->MACRO['TIMET'] != ""){
|
||
|
$def[1] .= "VRULE:".$this->MACRO['TIMET']."#000000:\"Last Service Check \\n\" ";
|
||
|
}
|
||
|
?>
|