oanhnn / laravel-influxdb
A service made to provide, set up and use the library influxdb-php in Laravel.
v0.1.0
2019-02-28 09:07 UTC
Requires
- php: ^7.1.3
- guzzlehttp/guzzle: ^6.3
- illuminate/support: ^5.5
- influxdb/influxdb-php: ^1.14.7
- monolog/monolog: ^1.24
Requires (Dev)
- mockery/mockery: ^1.0
- orchestra/testbench: ^3.5
- phpunit/phpunit: ^6.3|^7.0
- squizlabs/php_codesniffer: ^3.2
This package is auto-updated.
Last update: 2024-11-08 13:10:34 UTC
README
A service made to provide, set up and use the library influxdb-php in Laravel.
Requirements
- php >=7.1.3
- Laravel 5.5+
- influxdb-php 1.14+
Installation
Begin by pulling in the package through Composer.
$ composer require oanhnn/laravel-influxdb
Usage
Reading Data
<?php // executing a query will yield a resultset object $result = InfluxDB::query('select * from test_metric LIMIT 5'); // get the points from the resultset yields an array $points = $result->getPoints();
Writing Data
<?php // create an array of points $points = array( new InfluxDB\Point( 'test_metric', // name of the measurement null, // the measurement value ['host' => 'server01', 'region' => 'us-west'], // optional tags ['cpucount' => 10], // optional additional fields time() // Time precision has to be set to seconds! ), new InfluxDB\Point( 'test_metric', // name of the measurement null, // the measurement value ['host' => 'server01', 'region' => 'us-west'], // optional tags ['cpucount' => 10], // optional additional fields time() // Time precision has to be set to seconds! ) ); $result = InfluxDB::writePoints($points, \InfluxDB\Database::PRECISION_SECONDS);
Logging
NOTE This feature is available on Laravel version 5.6+.
In config/logging.php
file, config you log with driver influxdb
<?php return [ // ... 'channels' => [ // ... 'custom' => [ 'driver' => 'influxdb', 'name' => 'channel-name', 'level' => 'info', 'bubble' => true, ], // ... ], // ... ];
In your code using
Log::channel('custom')->info('Some message');
Changelog
See all change logs in CHANGELOG
Testing
$ git clone git@github.com/oanhnn/laravel-influxdb.git /path $ cd /path $ composer install $ composer test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email to Oanh Nguyen instead of using the issue tracker.
Credits
License
This project is released under the MIT License.
Copyright © Oanh Nguyen.