pnp4nagios/share/pnp/templates.dist/check_jmx4perl_connector_sent.php

22 lines
742 B
PHP
Raw Normal View History

2017-05-20 15:26:21 +02:00
<?php
#
# Copyright (c) 2006-2012 Joerg Linge (http://www.pnp4nagios.org)
# Plugin: check_jmx4perl
# Dataset: connector_sent
# Perfdata: bytes_sent=3201194.64566929;83886080;104857600
#
$opt[1] = "--vertical-label \"Bytes\" --title \"Connector Sent $hostname / $servicedesc\" ";
$def[1] = rrd::def("var1",$RRDFILE[1],$DS[1],"AVERAGE") ;
$def[1] .= rrd::gradient('var1', '#F5F5F5', '#C0C0C0' );
$def[1] .= rrd::line1 ("var1", "#B80000", $LABEL[1]);
$def[1] .= rrd::gprint("var1", array("LAST","MAX","AVERAGE"), "%6.2lf %sB");
if ($WARN[1] != "") {
$def[1] .= rrd::hrule($WARN[1],"#FFFF00", "Warning\\n");
}
if ($CRIT[1] != "") {
$def[1] .= rrd::hrule($CRIT[1],"#FF0000", "Critical");
}
$def[1] .= rrd::comment ("jolokia.org");
?>