X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Frrdstat.php-class;h=680516c136f8eb3594d9939534d79d5eeefb5db9;hp=6b241c7d281f0faf2c90304f47a8b009296717d6;hb=abe8eac1a94e0a149ce6ff782deb11a840e5b125;hpb=099bd59fede8a97b821b13ad8a931239c9c751bf diff --git a/include/classes/rrdstat.php-class b/include/classes/rrdstat.php-class index 6b241c7..680516c 100644 --- a/include/classes/rrdstat.php-class +++ b/include/classes/rrdstat.php-class @@ -68,11 +68,15 @@ class rrdstat { $this->rrd_file = $iinfo['file']; $this->basename = (substr($this->rrd_file, -4) == '.rrd')?substr($this->rrd_file, 0, -4):$this->rrd_file; } + elseif (!is_null($conf_id) && file_exists($conf_id.'.rrd')) { + $this->rrd_file = $conf_id.'.rrd'; + $this->basename = $conf_id; + } else { $this->basename = !is_null($conf_id)?$conf_id:'xxx.unknown'; } - if (isset($iinfo['file'])) { + if (!is_null($this->rrd_file)) { // fields (data sources, DS) // name - DS name // type - one of COUNTER, GAUGE, DERIVE, ABSOLUTE @@ -263,6 +267,17 @@ class rrdstat { return $fresult; } + function last_update() { + // fetch time of last update in this RRD file + static $last_update; + if (!isset($last_update) && in_array($this->status, array('ok','readonly'))) { + $last_cmd = 'rrdtool last '.$this->rrd_file; + $return = trim(`$last_cmd 2>&1`); + $last_update = is_numeric($return)?$return:null; + } + return isset($last_update)?$last_update:null; + } + function graph($timeframe = 'day', $sub = null, $extra = null) { // create a RRD graph static $gColors; @@ -301,7 +316,7 @@ class rrdstat { if (isset($gconf['path'])) { $fname = $gconf['path'].'/'.$fname; } $fname = str_replace('//', '/', $fname); - $graphrows = array(); $gC = 0; + $graphrows = array(); $specialrows = array(); $gC = 0; $gDefs = ''; $gGraphs = ''; $addSpecial = ''; if ($timeframe == 'day') { @@ -389,6 +404,10 @@ class rrdstat { } $grow['gType'] = ((count($this->rrd_fields)==2) && ($key==0))?'AREA':'LINE1'; $grow['color'] = $gColors[$gC++]; if ($gC >= count($gColors)) { $gC = 0; } + if (isset($ds['legend'])) { + $grow['legend'] = $ds['legend']; + if (!isset($gconf['show_legend'])) { $gconf['show_legend'] = true; } + } $graphrows[] = $grow; } } @@ -492,6 +511,36 @@ class rrdstat { return $return; } + function graph_plus($timeframe = 'day', $sub = null, $extra = null) { + // create a RRD graph and return meta info as a ready-to-use array + $gmeta = array('filename'=>null); + $ret = $this->graph($timeframe, $sub, $extra); + if (strpos($ret, "\n\n") !== false) { $gmeta['graph_cmd'] = substr($ret, 0, strpos($ret, "\n\n")); $ret = substr($ret, strpos($ret, "\n\n")+2); } + else { $gmeta['graph_cmd'] = null; } + $grout = explode("\n", $ret); + foreach ($grout as $gline) { + if (preg_match('/^file:(.+)$/', $gline, $regs)) { + $gmeta['filename'] = $regs[1]; + } + elseif (preg_match('/^(\d+)x(\d+)$/', $gline, $regs)) { + $gmeta['width'] = $regs[1]; $gmeta['height'] = $regs[2]; + } + elseif (preg_match('/^([^\|]+)\|([^|]+)\|([^\|]*)$/', $gline, $regs)) { + $gmeta['data'][$regs[1]][$regs[2]] = $regs[3]; + } + elseif (preg_match('/^([^\|]+)\|([^\|]*)$/', $gline, $regs)) { + $gmeta['var'][$regs[1]] = $regs[2]; + } + elseif (strlen(trim($gline))) { + $gmeta['info'][] = $gline; + } + } + if (is_null($gmeta['filename'])) { + $gmeta['filename'] = $this->basename.(!is_null($sub)?'-'.$sub:'').'-'.$timeframe.'.png'; + } + return $gmeta; + } + function page($sub = null, $page_extras = null, $graph_extras = null) { // create a (HTML) page and return it in a string @@ -535,7 +584,7 @@ class rrdstat { function page_index($pconf) { // create a bare, very simple index list HTML page and return it in a string - $ptitle = isset($pconf['title_page'])?$pconf['title_page']:'Index - RRD statistics'; + $ptitle = isset($pconf['title_page'])?$pconf['title_page']:'RRD statistics index'; $out = ''; $out .= ''.$ptitle.''; @@ -552,42 +601,16 @@ class rrdstat { $out .= ''; $out .= '

'.$ptitle.'

'; - $out .= '

The following RRD stats are available:

'; - - $out .= '