A PHP Client for sending data to librato metrics. Inspired or ported from node-librato-metrics from @felixge
Installation should be done via Composer.
$ composer require nesQuick/Metrics
use Metrics\Client;
$client = new Client('user@example.org', '...');
$client->post('/metrics', array(
'gauges' => array(
array('name' => 'metric1', 'value' => 123)
)
));
Licensed under the MIT license.