繁体   English   中英

PHP RRD图浮动值而不是整数

[英]php RRD Graph floating values instead of integers

在此处输入图片说明 我正在生成一个rrd图,并且面临2个问题。

问题1:我正在打印的数字是不带小数的整数,尽管在打印时会显示小数。 真是令人困惑。 因此,我在rrdgraph_graph上在线查看 ,尽管我使用的是正确的语法,并且未应用任何计算,但仍然可以得到浮点值而不是整数。

根据官方网站: %s place this after %le, %lf or %lg. This will be replaced by the appropriate SI magnitude unit and the value will be scaled accordingly (123456 -> 123.456 k). %s place this after %le, %lf or %lg. This will be replaced by the appropriate SI magnitude unit and the value will be scaled accordingly (123456 -> 123.456 k).

我已附上一张照片作为输出样本。 我还提供了一个有效的示例代码,因此,如果有人理解RRD可以查看可能的错误。

问题2:我试图在图上添加VRULE:time#color[:legend][:dashes[=on_s[,off_s[,on_s,off_s]...]][:dash-offset=offset]]功能,并根据在线说明我可以提供时间。 由于我的图形在移动,因此我打算做时间(值)-1800秒。 我想在图表中间放置一条垂直线,以便可以查看30分钟值的平均值。 当我使用这种格式时,出现此错误:

<b>Graph error: </b>parameter '1400274668-1800' does not represent time in line VRULE:1400274668-1800#0000CD:Half way values

当我删除减法后,一切正常。 有没有办法在我的图形中间生成这条线?

<?php

$file = "snmp";
$rrdFile = dirname(__FILE__) . "/".$file.".rrd";
$in = "losses";
$png = "/home/linux/Desktop/";
$in_min = "vdef_in_min";
$in_max = "vdef_in_max";
$in_lst = "vdef_in_lst";
$in_av = "vdef_in_av";
$title = "Losses RRD::Graph";
$output = array("1h","1d");
$step = 5;
$heartbeat = 2 * $step;

while (1) { 
  sleep (1);

  $options = array(
           "--start","now -15s",
           "--step", "".$step."",
           "DS:".$in.":GAUGE:".$heartbeat.":0:U",
           "RRA:LAST:0.5:1:3600",
           "RRA:MIN:0.5:1:3600",
           "RRA:MAX:0.5:1:3600",
           "RRA:AVERAGE:0.5:6:600",
           "RRA:LAST:0.5:300:288",
           "RRA:MIN:0.5:300:288",
           "RRA:MAX:0.5:300:288`",
           "RRA:AVERAGE:0.5:600:144"
           );

   if ( !isset( $create ) ) {

     $create = rrd_create(
              "".$rrdFile."",
              $options
              );

   if ( $create === FALSE ) {
      echo "Creation error: ".rrd_error()."\n";
   }
  }

  $t = time();
  $losses = rand(0, 150);

  $update = rrd_update(
               "".$rrdFile."",
               array(
                 "".$t.":".$losses.""
                 )
               );

  if ($update === FALSE) {
     echo "Update error: ".rrd_error()."\n";
  }

  date_default_timezone_set('Europe/Stockholm');
  $timezone = new DateTime(NULL, new DateTimeZone('Europe/Stockholm'));
  $date = date('l jS \of F Y h\\:i\\:s A' , $timezone->format('U'));
  $comment = "RRD last updated:".$date;
  $comment = str_replace( ":", "\\:", $comment );
  $graph = "Graph last updated:".$date;
  $graph = str_replace( ":", "\\:", $graph );

  foreach ($output as $test) {

     $final = array(
            "--start","end - ".$test."",
            "--end", "".$t."",
            "--title=".$file." RRD::Graph with - ".$test." Periods",
            "--vertical-label=Bytes(s)/sec",
            "--right-axis-label=latency(ms)",
            "--alt-y-grid", "--rigid",
            "--width", "800", "--height", "500",
            "--lower-limit=0",
            "--no-gridfit",
            "--slope-mode",
            "DEF:".$in."_def=".$file.".rrd:".$in.":LAST",
            "CDEF:inbytes=".$in."_def",
            "VDEF:".$in_lst."=inbytes,LAST",
            "VDEF:".$in_min."=inbytes,MINIMUM",
            "VDEF:".$in_max."=inbytes,MAXIMUM",
            "VDEF:".$in_av."=inbytes,AVERAGE",
            "COMMENT:\\n",
            "LINE2:".$in."_def#FF0000:".$in."",
            "GPRINT:".$in_min.": Minimum\:%6.2lf %S",
            "GPRINT:".$in_max.":Maximum\:%6.2lf %S",
            "GPRINT:".$in_lst.":Last\:%6.2lf %s",
            "GPRINT:".$in_av.":Average\:%6.2lf %s",
            "COMMENT:\\n",
            "VRULE:".$t."#0000CD:Half way values",
            "COMMENT:\\n",
            "HRULE:50#FFFF00:Maximum value",
            "COMMENT:\\n",
            "COMMENT: ",
            "COMMENT:\\n",
            "COMMENT:".$comment."\\r",
            "COMMENT:".$graph."\\r"
            );

    $outputPngFile = rrd_graph(
                   "".$png."".$test.".png",
                   $final
                   );

    if ($outputPngFile === FALSE) {
      echo "<b>Graph error: </b>".rrd_error()."\n";
    }

   }

   $debug = rrd_lastupdate (
                "".$rrdFile.""
                );

   if ($debug === FALSE) {
     echo "<b>Graph result error: </b>".rrd_error()."\n";
   } 

   var_dump ($debug);
 }

?>

第一个问题的答案几乎可以肯定是数据规范化。 由于您并非每次都在步边界上精确地更新RRD,因此将提交的数据值归一化为步边界,从而得到十进制值。 要了解这一点,请阅读Alex van den Bogeardt关于该主题的出色文章

第二个问题是您根本无法以这种方式使用VRULE声明。 VRULE的第一个参数可以是数字或VDEF变量,但不能是公式。 因此, VRULE:12345678#0000CD:Foo很好, VRULE:vdefname#FF00FF:Bar 但是,您不能使用VRULE:123456-123#0000CD:No 像下面这样进行计算:

"VRULE:".($t-1800)."#0000CD:Half way values",

...,这将导致有效的语法。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM