X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Frrdstat.php-class;h=ff144456b2103bd05cc17c041443600b7510f21c;hp=74b5b5c4116153fcd34f12813fced0f689ae235e;hb=75124b94e74fb301e2d09d25c7e3b8b2564d42e0;hpb=1efa5ce77c7bb47081432e2fe043214e4d7fde9c diff --git a/include/classes/rrdstat.php-class b/include/classes/rrdstat.php-class index 74b5b5c..ff14445 100644 --- a/include/classes/rrdstat.php-class +++ b/include/classes/rrdstat.php-class @@ -5,6 +5,7 @@ class rrdstat { var $rrd_file = null; var $basename = null; + var $config_all = null; var $config_raw = null; var $config_graph = null; var $config_page = null; @@ -20,7 +21,7 @@ class rrdstat { // ***** init RRD stat module ***** $this->set_def($rrdconfig, $conf_id); - if (!is_null($this->rrd_file)) { + if (($this->status == 'unused') && !is_null($this->rrd_file)) { if (!is_writeable($this->rrd_file)) { if (!file_exists($this->rrd_file)) { if (@touch($this->rrd_file)) { $this->create(); } @@ -59,52 +60,62 @@ class rrdstat { $iinfo = $complete_conf; } - if (!isset($iinfo['file'])) { return false; } - - $this->rrd_file = $iinfo['file']; - $this->basename = (substr($this->rrd_file, -4) == '.rrd')?substr($this->rrd_file, 0, -4):$this->rrd_file; - - // fields (data sources, DS) - // name - DS name - // type - one of COUNTER, GAUGE, DERIVE, ABSOLUTE - // heartbeat - if no sample recieved for that time, store UNKNOWN - // min - U (unconstrained) or minimum value - // max - U (unconstrained) or maximum value - // update - this string will be fed into eval() for updating this field - if (isset($iinfo['fields']) && is_array($iinfo['fields'])) { - $this->rrd_fields = $iinfo['fields']; + if (isset($iinfo['graph-only']) && $iinfo['graph-only'] && !is_null($conf_id)) { + $this->basename = $conf_id; + $this->status = 'graphonly'; } - else { - $this->rrd_fields[] = array('name' => 'ds0', 'type' => 'COUNTER', 'heartbeat' => 600, 'min' => 'U', 'max' => 'U'); - $this->rrd_fields[] = array('name' => 'ds1', 'type' => 'COUNTER', 'heartbeat' => 600, 'min' => 'U', 'max' => 'U'); + elseif (isset($iinfo['file'])) { + $this->rrd_file = $iinfo['file']; + $this->basename = (substr($this->rrd_file, -4) == '.rrd')?substr($this->rrd_file, 0, -4):$this->rrd_file; } + else { + $this->basename = !is_null($conf_id)?$conf_id:'xxx.unknown'; + } + + if (isset($iinfo['file'])) { + // fields (data sources, DS) + // name - DS name + // type - one of COUNTER, GAUGE, DERIVE, ABSOLUTE + // heartbeat - if no sample recieved for that time, store UNKNOWN + // min - U (unconstrained) or minimum value + // max - U (unconstrained) or maximum value + // update - this string will be fed into eval() for updating this field + if (isset($iinfo['fields']) && is_array($iinfo['fields'])) { + $this->rrd_fields = $iinfo['fields']; + } + else { + $this->rrd_fields[] = array('name' => 'ds0', 'type' => 'COUNTER', 'heartbeat' => 600, 'min' => 'U', 'max' => 'U'); + $this->rrd_fields[] = array('name' => 'ds1', 'type' => 'COUNTER', 'heartbeat' => 600, 'min' => 'U', 'max' => 'U'); + } - // MRTG-style RRD "database", see http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/tut/rrdtutorial.en.html - // - // archives (RRAs): - // 600 samples of 5 minutes (2 days and 2 hours) - // 700 samples of 30 minutes (2 days and 2 hours, plus 12.5 days) - // 775 samples of 2 hours (above + 50 days) - // 797 samples of 1 day (above + 732 days, rounded up to 797) + // MRTG-style RRD "database", see http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/tut/rrdtutorial.en.html + // + // archives (RRAs): + // 600 samples of 5 minutes (2 days and 2 hours) + // 700 samples of 30 minutes (2 days and 2 hours, plus 12.5 days) + // 775 samples of 2 hours (above + 50 days) + // 797 samples of 1 day (above + 732 days, rounded up to 797) - $this->rrd_step = isset($iinfo['rrd_step'])?$iinfo['rrd_step']:300; + $this->rrd_step = isset($iinfo['rrd_step'])?$iinfo['rrd_step']:300; - if (isset($iinfo['rra_base']) && is_array($iinfo['rra_base'])) { - $this->rra_base = $iinfo['rra_base']; - } - else { - $this->rra_base[] = array('step' => 1, 'rows' => 600); - $this->rra_base[] = array('step' => 6, 'rows' => 700); - $this->rra_base[] = array('step' => 24, 'rows' => 775); - $this->rra_base[] = array('step' => 288, 'rows' => 797); - } + if (isset($iinfo['rra_base']) && is_array($iinfo['rra_base'])) { + $this->rra_base = $iinfo['rra_base']; + } + else { + $this->rra_base[] = array('step' => 1, 'rows' => 600); + $this->rra_base[] = array('step' => 6, 'rows' => 700); + $this->rra_base[] = array('step' => 24, 'rows' => 775); + $this->rra_base[] = array('step' => 288, 'rows' => 797); + } - $this->rra_add_max = isset($iinfo['rra_add_max'])?$iinfo['rra_add_max']:true; + $this->rra_add_max = isset($iinfo['rra_add_max'])?$iinfo['rra_add_max']:true; + } if (isset($iinfo['graph'])) { $this->config_graph = $iinfo['graph']; } if (isset($iinfo['page'])) { $this->config_page = $iinfo['page']; } $this->config_raw = $iinfo; + $this->config_all = $complete_conf; } function create() { @@ -154,10 +165,11 @@ class rrdstat { if (!is_null($evalcode)) { ob_start(); eval($evalcode); - $upvals = explode("\n", ob_get_contents()); + $ret = ob_get_contents(); + if (strlen($ret)) { $upvals = explode("\n", $ret); } ob_end_clean(); } - $walkfunc = create_function('&$val', '$val = is_numeric($val)?$val:"U";'); + $walkfunc = create_function('&$val,$key', '$val = is_numeric(trim($val))?trim($val):"U";'); array_walk($upvals, $walkfunc); } else { @@ -195,8 +207,11 @@ class rrdstat { $upvals[] = is_null($val)?'U':$val; } } - $update_cmd = 'rrdtool update '.$this->rrd_file.' N:'.implode(':', $upvals); - $return = `$update_cmd 2>&1`; + $return = null; + if (count($upvals)) { + $update_cmd = 'rrdtool update '.$this->rrd_file.' N:'.implode(':', $upvals); + $return = `$update_cmd 2>&1`; + } if (strpos($return, 'ERROR') !== false) { trigger_error($this->rrd_file.' - rrd update error: '.$return, E_USER_WARNING); @@ -248,6 +263,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; @@ -255,7 +281,7 @@ class rrdstat { $gColors = array('#00CC00','#0000FF','#000000','#FF0000','#00FF00','#FFFF00','#FF00FF','#00FFFF','#808080','#800000','#008000','#000080','#808000','#800080','#008080','#C0C0C0'); } - if (!in_array($this->status, array('ok','readonly'))) { trigger_error('Error: rrd status is '.$this->status, E_USER_WARNING); return false; } + if (!in_array($this->status, array('ok','readonly','graphonly'))) { trigger_error('Error: rrd status is '.$this->status, E_USER_WARNING); return false; } // assemble configuration $gconf = (array)$extra; @@ -315,8 +341,8 @@ class rrdstat { $duration = isset($gconf['duration'])?$gconf['duration']:396*86400; // 365+31 days $slice = isset($gconf['slice'])?$gconf['slice']:86400; // 1 day // vertical lines at month borders - $addSpecial .= ' VRULE:'.strtotime(date('Y-01-01')).'#FF0000'; - $addSpecial .= ' VRULE:'.strtotime(date('Y-01-01').' -1 year').'#FF0000'; + $addSpecial .= ' VRULE:'.strtotime(date('Y-01-01 12:00:00')).'#FF0000'; + $addSpecial .= ' VRULE:'.strtotime(date('Y-01-01 12:00:00').' -1 year').'#FF0000'; } else { $duration = isset($gconf['duration'])?$gconf['duration']:$this->rrd_step*500; // 500 steps @@ -332,6 +358,7 @@ class rrdstat { $grow['name'] = $erow['name'].(isset($erow['scale'])?'_tmp':''); if ($grow['dType'] == 'DEF') { $grow['dsname'] = isset($erow['dsname'])?$erow['dsname']:$erow['name']; + if (isset($erow['dsfile'])) { $grow['dsfile'] = $erow['dsfile']; } $grow['cf'] = isset($erow['cf'])?$erow['cf']:'AVERAGE'; } else { @@ -352,6 +379,7 @@ class rrdstat { if (!isset($gconf['show_legend'])) { $gconf['show_legend'] = true; } } if (isset($erow['stack'])) { $grow['stack'] = ($erow['stack'] == true); } + if (isset($erow['desc'])) { $grow['desc'] = $erow['desc']; } $graphrows[] = $grow; } } @@ -372,6 +400,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; } } @@ -401,7 +433,7 @@ class rrdstat { else { foreach ($graphrows as $grow) { if (isset($grow['gType']) && strlen($grow['gType'])) { - $textprefix = isset($grow['legend'])?$grow['legend']:$grow['name']; + $textprefix = isset($grow['desc'])?$grow['desc']:(isset($grow['legend'])?$grow['legend']:$grow['name']); // XXX: use lines below once we have rrdtol 1.2 // $graphrows[] = array('dType'=>'VDEF', 'name'=>$grow['name'].'_last', 'rpn_expr'=>$grow['name'].',LAST'); // $specialrows[] = array('sType'=>'PRINT', 'name'=>$grow['name'].'_last', 'text'=>'%3.2lf%s'); @@ -440,7 +472,11 @@ class rrdstat { foreach ($graphrows as $grow) { if (isset($grow['dType']) && strlen($grow['dType'])) { $gDefs .= ' '.$grow['dType'].':'.$grow['name'].'='; - $gDefs .= ($grow['dType']=='DEF')?$this->rrd_file.':'.$grow['dsname'].':'.$grow['cf']:$grow['rpn_expr']; + if ($grow['dType'] == 'DEF') { + $gDefs .= isset($grow['dsfile'])?$grow['dsfile']:$this->rrd_file; + $gDefs .= ':'.$grow['dsname'].':'.$grow['cf']; + } + else { $gDefs .= $grow['rpn_expr']; } } if (isset($grow['gType']) && strlen($grow['gType'])) { // XXX: change from STACK type to STACK flag once we have rrdtool 1.2 @@ -471,8 +507,65 @@ 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 + + // assemble configuration + $pconf = (array)$page_extras; + if (!is_null($sub) && is_array($this->config_raw['page.'.$sub])) { + $pconf = $pconf + $this->config_raw['page.'.$sub]; + } + $pconf = $pconf + (array)$this->config_page; + + $return = null; + switch ($pconf['type']) { + case 'index': + $return = $this->page_index($pconf); + break; + case 'overview': + $return = $this->page_overview($pconf, $graph_extras); + break; + case 'simple': + default: + $return = $this->page_simple($pconf, $graph_extras); + break; + } + return $return; + } + function simple_html($sub = null, $page_extras = null, $graph_extras = null) { // create a simple (MRTG-like) HTML page and return it in a string + // XXX: this is here temporarily for compat only, it's preferred to use page()! // assemble configuration $pconf = (array)$page_extras; @@ -481,6 +574,149 @@ class rrdstat { } $pconf = $pconf + (array)$this->config_page; + return $this->page_simple($pconf, $graph_extras); + } + + 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']:'RRD statistics index'; + + $out = ''; + $out .= ''.$ptitle.''; + $out .= ''; + $out .= ''; + $out .= ''; + + $out .= '

'.$ptitle.'

'; + if (isset($pconf['text_intro']) && strlen($pconf['text_intro'])) { + $out .= '

'.$pconf['text_intro'].'

'; + } + elseif (!isset($pconf['text_intro'])) { + $out .= '

The following RRD stats are available:

'; + } + + $stats = $this->h_page_statsArray($pconf); + + $out .= ''; + + $out .= $this->h_page_footer(); + $out .= ''; + return $out; + } + + function page_overview($pconf, $graph_extras = null) { + // create an overview HTML page (including graphs) and return it in a string + + $ptitle = isset($pconf['title_page'])?$pconf['title_page']:'RRD statistics overview'; + + $out = ''; + $out .= ''.$ptitle.''; + $out .= ''; + $out .= ''; + $out .= ''; + + $out .= '

'.$ptitle.'

'; + if (isset($pconf['text_intro'])) { $out .= '

'.$pconf['text_intro'].'

'; } + + $stats = $this->h_page_statsArray($pconf); + + $num_rows = is_numeric($pconf['num_rows'])?$pconf['num_rows']:2; + $num_cols = ceil(count($stats)/$num_rows); + + $out .= ''; + for ($col = 0; $col < $num_cols; $col++) { + $out .= ''; + for ($row = 0; $row < $num_rows; $row++) { + $idx = $col * $num_rows + $row; + $out .= ''; + } + $out .= ''; + } + $out .= '
'; + if ($idx < count($stats)) { + list($sname, $s_psub) = explode('|', $stats[$idx]['name'], 2); + $s_psname = 'page'.(isset($s_psub)?'.'.$s_psub:''); + $g_sub = $this->config_all[$sname][$s_psname]['graph_sub']; + + if (isset($this->config_all[$sname][$s_psname]['title_page'])) { + $s_ptitle = $this->config_all[$sname][$s_psname]['title_page']; + } + elseif (isset($this->config_all[$sname]['page']['title_page'])) { + $s_ptitle = $this->config_all[$sname]['page']['title_page']; + } + else { + $s_ptitle = $sname.(isset($s_psub)?' ('.$s_psub.')':'').' statistics'; + } + if (!isset($pconf['hide_titles']) || !$pconf['hide_titles']) { + $out .= '

'.$s_ptitle.'

'; + } + + $s_rrd = new rrdstat($this->config_all, $sname); + if (in_array($s_rrd->status, array('ok','readonly','graphonly'))) { + $tframe = isset($pconf['graph_timeframe'])?$pconf['graph_timeframe']:'day'; + $gmeta = $s_rrd->graph_plus($tframe, $g_sub); + if (isset($pconf['graph_url'])) { + $gURL = $pconf['graph_url']; + $fname = str_replace('%f', basename($gmeta['filename']), $gURL); + $fname = str_replace('%p', $gmeta['filename'], $gURL); + if (substr($gURL, -1) == '/') { $gURL .= $gmeta['filename']; } + } + else { + $gURL = $gmeta['filename']; + } + $out .= 'basename.(!is_null($g_sub)?' - '.$g_sub:'').' - '.$tframe.'" class="rrdgraph"'; + $out .= ' style="width:'.$gmeta['width'].'px;height:'.$gmeta['height'].'px;">'; + $out .= ''; + } + else { + $out .= 'RRD error: status is "'.$s_rrd->status.'"'; + } + } + else { + $out .= ' '; + } + $out .= '
'; + + $out .= $this->h_page_footer(); + $out .= ''; + return $out; + } + + function page_simple($pconf, $graph_extras = null) { + // create a simple (MRTG-like) HTML page and return it in a string + $ptitle = isset($pconf['title_page'])?$pconf['title_page']:$this->basename.' - RRD statistics'; $gtitle = array(); $gtitle['day'] = isset($pconf['title_day'])?$pconf['title_day']:'Day overview (scaling 5 minutes)'; @@ -510,41 +746,18 @@ class rrdstat { $out .= '

Last Update: '.(is_null($this->last_update())?'unknown':date('Y-m-d H:i:s', $this->last_update())).'

'; } - if (in_array($this->status, array('ok','readonly'))) { - $g_sub = isset($pconf['graph_sub'])?$pconf['graph_sub']:null; + $g_sub = isset($pconf['graph_sub'])?$pconf['graph_sub']:null; + if (in_array($this->status, array('ok','readonly','graphonly'))) { foreach (array('day','week','month','year') as $tframe) { - $ret = $this->graph($tframe, $g_sub, $graph_extras); - if (strpos($ret, "\n\n") !== false) { $graph_cmd = substr($ret, 0, strpos($ret, "\n\n")); $ret = substr($ret, strpos($ret, "\n\n")+2); } - else { $graph_cmd = null; } - $grout = explode("\n",$ret); - $gfilename = null; - $gmeta = array(); - foreach ($grout as $gline) { - if (preg_match('/^file:(.+)$/', $gline, $regs)) { - $gfilename = $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($gfilename)) { $gfilename = $this->basename.(!is_null($g_sub)?'-'.$g_sub:'').'-'.$tframe.'.png'; } + $gmeta = $this->graph_plus($tframe, $g_sub, $graph_extras); if (isset($pconf['graph_url'])) { $gURL = $pconf['graph_url']; - $fname = str_replace('%f', basename($gfilename), $gURL); - $fname = str_replace('%p', $gfilename, $gURL); - if (substr($gURL, -1) == '/') { $gURL .= $gfilename; } + $fname = str_replace('%f', basename($gmeta['filename']), $gURL); + $fname = str_replace('%p', $gmeta['filename'], $gURL); + if (substr($gURL, -1) == '/') { $gURL .= $gmeta['filename']; } } else { - $gURL = $gfilename; + $gURL = $gmeta['filename']; } $out .= '
'; // $out .= '

'.nl2br($ret).'

'; @@ -573,31 +786,65 @@ class rrdstat { $out .= '

'.$gval.'

'; } } + $out .= '
'; } } else { $out .= 'RRD error: status is "'.$this->status.'"'; } - $out .= ''; - - $out .= ''; + $out .= $this->h_page_footer(); $out .= ''; return $out; } - 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; + function h_page_statsArray($pconf) { + // return array of stats to list on a page + $stats = array(); + $snames = array(); $s_exclude = array(); $sfiles = array(); + if (isset($pconf['index_ids'])) { + foreach (explode(',', $pconf['index_ids']) as $iid) { + if ($iid{0} == '-') { $s_exclude[] = substr($iid, 1); } + else { $snames[] = $iid; } + } } - return isset($last_update)?$last_update:null; + if (!isset($pconf['scan_config']) || $pconf['scan_config']) { + foreach ($this->config_all as $iname=>$rinfo) { + if (($iname != '*') && !(isset($rinfo['hidden']) && $rinfo['hidden']) && + !(in_array($iname, $snames)) && !(in_array($iname, $s_exclude))) { + $snames[] = $iname; + } + } + } + foreach ($snames as $iname) { + $newstat = array('name'=>$iname); + $sfiles[] = isset($this->config_all[$iname]['file'])?$this->config_all[$iname]['file']:$iname.'.rrd'; + if (is_array($this->config_all[$iname])) { + foreach ($this->config_all[$iname] as $key=>$val) { + if (substr($key, 0, 5) == 'page.') { $newstat['sub'][] = substr($key, 5); } + } + } + $stats[] = $newstat; + } + if (isset($pconf['scan_files']) && $pconf['scan_files']) { + $rrdfiles = glob('*.rrd'); + foreach ($rrdfiles as $rrdfile) { + $iname = (substr($rrdfile, -4) == '.rrd')?substr($rrdfile, 0, -4):$rrdfile; + if (!in_array($rrdfile, $sfiles) && !(in_array($iname, $s_exclude))) { + $stats[] = array('name'=>$iname, 'class'=>'scanfile'); + } + } + } + return $stats; + } + + function h_page_footer() { + // return generic page footer + $out = ''; + return $out; } function text_quote($text) { return '"'.str_replace('"', '\"', str_replace(':', '\:', $text)).'"'; }