New upstream version 0.6.27
This commit is contained in:
@@ -1,8 +1,18 @@
|
||||
<?php
|
||||
|
||||
#
|
||||
if (!is_array($ds_name)) {
|
||||
$ds_name = [];
|
||||
}
|
||||
if (!is_arry($opt)) {
|
||||
$opt = [];
|
||||
}
|
||||
if (!is_array($def)) {
|
||||
$def = [];
|
||||
}
|
||||
#
|
||||
#
|
||||
#
|
||||
$this->MACRO['TITLE'] = "The Title";
|
||||
$this->MACRO['TITLE'] = "The Title";
|
||||
$this->MACRO['COMMENT'] = "A Comment";
|
||||
#
|
||||
# Define the Service we want to graph
|
||||
@@ -12,17 +22,16 @@ $service = '_HOST_';
|
||||
$hosts = array('localhost','node1','node2');
|
||||
#
|
||||
# The Datasource Name for Graph 1 ( index 0 )
|
||||
$ds_name[0] = "RTA Times";
|
||||
$ds_name[0] = "RTA Times";
|
||||
$opt[0] = "--title \"Stacked RTA Times\"";
|
||||
$def[0] = "";
|
||||
#
|
||||
# Iterate through the list of hosts
|
||||
foreach($hosts as $key=>$host){
|
||||
foreach ($hosts as $key => $host) {
|
||||
#
|
||||
# get the data for a given Host/Service
|
||||
$a = $this->tplGetData($host,$service);
|
||||
$def[0] .= rrd::def("a$key" ,$a['DS'][0]['RRDFILE'], $a['DS'][0]['DS'], "AVERAGE");
|
||||
$a = $this->tplGetData($host, $service);
|
||||
$def[0] .= rrd::def("a$key", $a['DS'][0]['RRDFILE'], $a['DS'][0]['DS'], "AVERAGE");
|
||||
$def[0] .= rrd::area("a$key", rrd::color($key), $a['MACRO']['HOSTNAME'], "STACK");
|
||||
$def[0] .= rrd::gprint("a$key", array("MIN", "MAX", "LAST"), "%.2lf%s");
|
||||
}
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user