Skip to content

croustibat/OVHPaaSTimeseries

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

OVHPaaSTimeseries

Simple class to wrap OVH Paas Timeseries plateform. Check OVH project here : https://www.runabove.com/iot-paas-timeseries.xml

How to use

Instanciate the class and call the read or write method by proving datas, token id + token key :

require_once __DIR__.'/ovhiot.php';

$ovhiot = OvhIOT::getInstance();
$data = [
  'metric'    => 'temperature',
  'timestamp' => time(),
  'value'     => $myvalue,
  'tags'      => [ 'mytag' => 'value1' ]
];

$ovhiot->write($data, $write_token_id, $write_token_key);

//or

$ovhiot->read($data, $read_token_id, $read_token_key);

About

Simple class to wrap OVH Paas Timeseries plateform

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages