rrd_fetch

(PECL rrd >= 0.9.0)

rrd_fetchFetch the data for graph as array.

Описание

array rrd_fetch ( string $filename , array $options )

Gets data for graph output from RRD database file as array. This function has same result as rrd_graph(), but fetched data are returned as array, no image file is created.

Список параметров

filename

RRD database file name.

options

Array of options for resolution specification.

Возвращаемые значения

Returns information about retrieved graph data.

Коментарии

A few years ago, the extension was patched so that it would count options itself. But for me, it's buggy (it does not work with more than 3 arguments) and neither does work.
2013-08-21 15:56:12
http://php5.kiev.ua/manual/ru/function.rrd-fetch.html
For example, this worked for me:

<?php
$result 
rrd_fetch"mydata.rrd", array( "AVERAGE""--resolution""60""--start""-1d""--end""start+1h" ) );
?>

This will fetch all fields.  You then have to use something like this to get to a specified rrd field:

<?php
foreach ( $result["data"]["myfield"] as $key => $value )
{
    echo 
"At timestamp $key, the value for myfield is $value.\n";
}
?>
2013-09-06 08:50:57
http://php5.kiev.ua/manual/ru/function.rrd-fetch.html

    Поддержать сайт на родительском проекте КГБ