Imported Upstream version 0.6.24+dfsg1
This commit is contained in:
44
share/pnp/templates.dist/check_ping.php
Normal file
44
share/pnp/templates.dist/check_ping.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
#
|
||||
# Copyright (c) 2006-2010 Joerg Linge (http://www.pnp4nagios.org)
|
||||
# Plugin: check_icmp [Multigraph]
|
||||
#
|
||||
# RTA
|
||||
#
|
||||
$ds_name[1] = "Round Trip Times";
|
||||
$opt[1] = "--vertical-label \"RTA\" --title \"Ping times\" ";
|
||||
$def[1] = rrd::def("var1", $RRDFILE[1], $DS[1], "AVERAGE") ;
|
||||
$def[1] .= rrd::gradient("var1", "ff5c00", "ffdc00", "Round Trip Times", 20) ;
|
||||
$def[1] .= rrd::gprint("var1", array("LAST", "MAX", "AVERAGE"), "%6.2lf $UNIT[1]") ;
|
||||
$def[1] .= rrd::line1("var1", "#000000") ;
|
||||
|
||||
if($WARN[1] != ""){
|
||||
if($UNIT[1] == "%%"){ $UNIT[1] = "%"; };
|
||||
$def[1] .= rrd::hrule($WARN[1], "#FFFF00", "Warning ".$WARN[1].$UNIT[1]."\\n");
|
||||
}
|
||||
if($CRIT[1] != ""){
|
||||
if($UNIT[1] == "%%"){ $UNIT[1] = "%"; };
|
||||
$def[1] .= rrd::hrule($CRIT[1], "#FF0000", "Critical ".$CRIT[1].$UNIT[1]."\\n");
|
||||
}
|
||||
#
|
||||
# Packets Lost
|
||||
$ds_name[2] = "Packets Lost";
|
||||
$opt[2] = "--vertical-label \"Packets lost\" -l0 -u105 --title \"Packets lost\" ";
|
||||
|
||||
$def[2] = rrd::def("var1", $RRDFILE[2], $DS[2], "AVERAGE");
|
||||
$def[2] .= rrd::gradient("var1", "ff5c00", "ffdc00", "Packets Lost", 20) ;
|
||||
$def[2] .= rrd::gprint("var1", array("LAST", "MAX", "AVERAGE"), "%3.0lf $UNIT[2]") ;
|
||||
$def[2] .= rrd::line1("var1", "#000000") ;
|
||||
|
||||
$def[2] .= rrd::hrule("100", "#000000") ;
|
||||
|
||||
if($WARN[2] != ""){
|
||||
if($UNIT[2] == "%%"){ $UNIT[2] = "%"; };
|
||||
$def[2] .= rrd::hrule($WARN[2], "#FFFF00", "Warning ".$WARN[2].$UNIT[2]."\\n");
|
||||
}
|
||||
if($CRIT[2] != ""){
|
||||
if($UNIT[2] == "%%"){ $UNIT[2] = "%"; };
|
||||
$def[2] .= rrd::hrule($CRIT[2], "#FF0000", "Critical ".$CRIT[2].$UNIT[2]."\\n");
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user