X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Frrdstat.php-class;h=55d0c37a3ff1d310d18e5299b38948fec1f62298;hp=3f5e98f920ca49e0dde13dc64a164752774fccff;hb=cf2bc478bb9058a3b4e1f716c04dc3854728fb76;hpb=f88289d7985a04283afff5cdaa81b0cd5449091e diff --git a/include/classes/rrdstat.php-class b/include/classes/rrdstat.php-class index 3f5e98f..55d0c37 100644 --- a/include/classes/rrdstat.php-class +++ b/include/classes/rrdstat.php-class @@ -366,8 +366,13 @@ class rrdstat { $evalcode = 'function { return trim('.substr($ds['update'], 4).')); }'; } elseif (substr($ds['update'], 0, 8) == 'snmp-if:') { - $snmphost = 'localhost'; $snmpcomm = 'public'; - list($nix, $ifname, $valtype) = explode(':', $ds['update'], 3); + if (substr_count($ds['update'], ':') >= 4) { + list($nix, $snmphost, $snmpcomm, $ifname, $valtype) = explode(':', $ds['update'], 5); + } + else { + $snmphost = 'localhost'; $snmpcomm = 'public'; + list($nix, $ifname, $valtype) = explode(':', $ds['update'], 3); + } $iflist = explode("\n", `snmpwalk -v2c -c $snmpcomm $snmphost interfaces.ifTable.ifEntry.ifDescr`); $ifnr = null; foreach ($iflist as $ifdesc) { @@ -396,14 +401,15 @@ class rrdstat { $upvals[$ds['name']] = $val; } } - $key_names = (!is_numeric(array_shift(array_keys($upvals)))); + $upval_keys = array_keys($upvals); + $keys_have_names = !is_numeric(array_shift($upval_keys)); if (in_array('L', $upvals, true)) { // for at least one value, we need to set the same as the last recorded value $fvals = $this->fetch(); $rowids = array_shift($fvals); $lastvals = array_shift($fvals); foreach (array_keys($upvals, 'L') as $akey) { - $upvals[$akey] = $key_names?$lastvals[$akey]:$lastvals[$rowids[$akey]]; + $upvals[$akey] = $keys_have_names?$lastvals[$akey]:$lastvals[$rowids[$akey]]; } } $walkfunc = create_function('&$val,$key', '$val = is_numeric(trim($val))?trim($val):"U";'); @@ -411,7 +417,7 @@ class rrdstat { $return = null; if (count($upvals)) { $update_cmd = $this->rrdtool_bin.' update '.$this->rrd_file - .($key_names?' --template '.implode(':', array_keys($upvals)):'').' N:'.implode(':', $upvals); + .($keys_have_names?' --template '.implode(':', array_keys($upvals)):'').' N:'.implode(':', $upvals); $return = `$update_cmd 2>&1`; } @@ -450,8 +456,8 @@ class rrdstat { $fresult = array(); $rows = explode("\n", $return); $fields = preg_split('/\s+/', array_shift($rows)); - if (array_shift($fields) == 'timestamp') { - $fresult[0] = $fields; + if (in_array(array_shift($fields), array('timestamp', ''))) { + //$fresult[0] = $fields; foreach ($rows as $row) { if (strlen(trim($row))) { $rvals = preg_split('/\s+/', $row); @@ -624,7 +630,7 @@ class rrdstat { $grow = array(); $grow['dType'] = 'CDEF'; $grow['name'] = $erow['name']; - $grow['rpn_expr'] = $erow['name'].'_tmp,'.$erow['scale'].',*'; + $grow['rpn_expr'] = $erow['name'].'_tmp,'.sprintf('%F', $erow['scale']).',*'; } if ($use_gcrows) { $grow['gType'] = isset($erow['gType'])?$erow['gType']:'LINE1'; } else { $grow['gType'] = ((count($grow_def)==2) && ($key==0))?'AREA':'LINE1'; } @@ -965,14 +971,15 @@ class rrdstat { if (isset($pconf['stats_url_add'])) { $sURL_add = $pconf['stats_url_add']; } else { $sURL_add = '&sub=%s'; } - $num_rows = is_numeric($pconf['num_rows'])?$pconf['num_rows']:2; - $num_cols = ceil(count($stats)/$num_rows); + $default_num_cols = $GLOBALS['ua']->isMobile()?1:2; + $num_cols = is_numeric($pconf['num_rows'])?$pconf['num_rows']:$default_num_cols; + $num_rows = ceil(count($stats)/$num_cols); $out .= ''."\n"; - for ($col = 0; $col < $num_cols; $col++) { + for ($row = 0; $row < $num_rows; $row++) { $out .= ''."\n"; - for ($row = 0; $row < $num_rows; $row++) { - $idx = $col * $num_rows + $row; + for ($col = 0; $col < $num_cols; $col++) { + $idx = $row * $num_cols + $col; $out .= '
'."\n"; if ($idx < count($stats)) { @list($sname, $s_psub) = explode('|', $stats[$idx]['name'], 2);