elemenx/laravel-influxdb
A service made to provide, set up and use the library influxdb-php in Laravel.
2,616
| Install | |
|---|---|
composer require elemenx/laravel-influxdb |
|
| Latest Version: | 0.0.2 |
| PHP: | ^7.1.3 |
| License: | MIT |
| Last Updated: | Oct 25, 2021 |
| Links: | GitHub · Packagist |
Maintainer: branchzero
Laravel InfluxDB
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.
Related Packages
lab404/laravel-impersonate
Laravel Impersonate is a plugin that allows to you to authenticate as your users...
20,848,025
2,344
bschmitt/laravel-amqp
AMQP wrapper for Laravel and Lumen to publish and consume messages
2,705,298
281