/usr/share/pnp4nagios/html/templates.dist/check-host-alive.php is in pnp4nagios-web 0.6.16-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 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");
}
?>
|