downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

OOP PECL/rrd example> <Esempi
[edit] Last updated: Tue, 21 May 2013

view this page in

Procedural PECL/rrd example

Example #1 Procedural usage of rrd

<?php
$rrdFile 
dirname(__FILE__) . "/speed.rrd";

//create rrd file
rrd_create($rrdFile,
 array(
  
"--start",920804400,
  
"DS:speed:COUNTER:600:U:U",
  
"RRA:AVERAGE:0.5:1:24",
  
"RRA:AVERAGE:0.5:6:10"
  
)
);

//update rrd file
rrd_update($rrdFile,
 array(
  
"920804700:12345",
  
"920805000:12357"
  
)
);

//graph output
rrd_graph(dirname(__FILE__) . "/speed.png",
 array(
  
"--start""920804400",
  
"--end""920808000",
  
"--vertical-label""m/s",
  
"DEF:myspeed=$rrdFile:speed:AVERAGE",
  
"CDEF:realspeed=myspeed,1000,*",
  
"LINE2:realspeed#FF0000"
 
)
);
?>



add a note add a note User Contributed Notes Procedural PECL/rrd example - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | sitemap | contact | advertising | mirror sites