nesquick / metrics
PHP Client for Librato Metrics APIs.
Installs: 44 523
Dependents: 1
Suggesters: 0
Security: 0
Stars: 17
Watchers: 2
Forks: 2
Open Issues: 0
Requires
- php: >=5.3
- kriswallsmith/buzz: ~0.13
This package is not auto-updated.
Last update: 2024-11-01 14:32:48 UTC
README
A PHP Client for sending data to librato metrics. Inspired or ported from node-librato-metrics from @felixge
Install
Installation should be done via Composer.
$ composer require nesQuick/Metrics
Example
use Metrics\Client; $client = new Client('user@example.org', '...'); $client->post('/metrics', array( 'gauges' => array( array('name' => 'metric1', 'value' => 123) ) ));
ToDo's
License
Licensed under the MIT license.