GoLang RRDUpdater::update

request it (267)
GoLang replacement for PHP's RRDUpdater::update [edit | history]



Do you know a GoLang replacement for PHP's RRDUpdater::update? Write it!

PHP RRDUpdater::update

PHP original manual for RRDUpdater::update [ show | php.net ]

RRDUpdater::update

(PECL rrd >= 0.9.0)

RRDUpdater::updateUpdate the RRD database file

Description

public bool RRDUpdater::update ( array $values [, string $time = time() ] )

Updates the RRD file defined via RRDUpdater::__construct(). The file is updated with a specific values.

Parameters

values

Data for update. Key is data source name.

time

Time value for updating the RRD with a particulat data. Default value is current time.

Return Values

Returns TRUE on success or FALSE on failure.

Errors/Exceptions

Throws a Exception on error.

Examples

Example #1 RRDUpdater::update() examples

<?php
$updator 
= new RRDUpdater("speed.rrd");
//updates the data source "speed" with value "12411"
//for time defined by timestamp "920807700"
$updator->update(array("speed" => "12411"), "920807700");
?>